Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/css/wallpaper_manager.css

Issue 1140403002: Update some spinners on ChromeOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix csp Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/wallpaper_manager/images/ui/2x/spinner.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 body { 9 body {
10 -webkit-app-region: drag; 10 -webkit-app-region: drag;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 122 }
123 123
124 #category-container { 124 #category-container {
125 flex: 1; 125 flex: 1;
126 position: relative; 126 position: relative;
127 } 127 }
128 128
129 #spinner-container { 129 #spinner-container {
130 -webkit-box-align: center; 130 -webkit-box-align: center;
131 -webkit-box-pack: center; 131 -webkit-box-pack: center;
132 background: url(chrome://resources/images/throbber.svg) center/32px no-repeat;
132 display: -webkit-box; 133 display: -webkit-box;
133 height: 287px; 134 height: 287px;
134 padding-bottom: 15px; 135 padding-bottom: 15px;
135 padding-top: 5px; 136 padding-top: 5px;
136 position: absolute; 137 position: absolute;
137 top: 0; 138 top: 0;
138 width: 100%; 139 width: 100%;
139 } 140 }
140 141
141 @-webkit-keyframes spin {
142 from {
143 -webkit-transform: rotate(0);
144 }
145 to {
146 -webkit-transform: rotate(360deg);
147 }
148 }
149
150 #spinner-container #spinner {
151 -webkit-animation-duration: 1s;
152 -webkit-animation-iteration-count: infinite;
153 -webkit-animation-name: spin;
154 -webkit-animation-timing-function: linear;
155 background-image: url(../images/ui/spinner.png);
156 background-position: center;
157 background-repeat: no-repeat;
158 height: 16px;
159 width: 16px;
160 }
161
162 #wallpaper-set-by-message { 142 #wallpaper-set-by-message {
163 -webkit-padding-end: 5px; 143 -webkit-padding-end: 5px;
164 -webkit-padding-start: 15px; 144 -webkit-padding-start: 15px;
165 height: 17px; 145 height: 17px;
166 } 146 }
167 147
168 #wallpaper-set-by-message:empty { 148 #wallpaper-set-by-message:empty {
169 display: none; 149 display: none;
170 } 150 }
171 151
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 margin-right: 4px; 363 margin-right: 4px;
384 opacity: 0.7; 364 opacity: 0.7;
385 position: relative; 365 position: relative;
386 top: 4px; 366 top: 4px;
387 width: 17px; 367 width: 17px;
388 } 368 }
389 369
390 #surprise-me #checkbox.checked { 370 #surprise-me #checkbox.checked {
391 background-image: url(../images/ui/checkbox_checked.png); 371 background-image: url(../images/ui/checkbox_checked.png);
392 } 372 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/wallpaper_manager/images/ui/2x/spinner.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698