OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, | 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow, |
6 * sign in and lock screens. | 6 * sign in and lock screens. |
7 */ | 7 */ |
8 | 8 |
9 html, | 9 html, |
10 body { | 10 body { |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 top: 0; | 219 top: 0; |
220 width: 100%; | 220 width: 100%; |
221 } | 221 } |
222 | 222 |
223 .background-initial { | 223 .background-initial { |
224 opacity: 0; | 224 opacity: 0; |
225 } | 225 } |
226 | 226 |
227 .throbber { | 227 .throbber { |
228 -webkit-animation: throbber-animation 1s steps(36) infinite; | 228 -webkit-animation: throbber-animation 1s steps(36) infinite; |
229 -webkit-margin-before: 2px; | |
230 -webkit-margin-end: 4px; | 229 -webkit-margin-end: 4px; |
231 background-image: url(chrome://theme/IDR_CROS_DEFAULT_THROBBER); | 230 background-image: url(chrome://theme/IDR_CROS_DEFAULT_THROBBER); |
232 display: inline-block; | 231 display: inline-block; |
233 height: 16px; | 232 height: 16px; |
| 233 margin-top: 2px; |
234 width: 16px; | 234 width: 16px; |
235 } | 235 } |
236 | 236 |
237 @-webkit-keyframes throbber-animation { | 237 @-webkit-keyframes throbber-animation { |
238 from { | 238 from { |
239 background-position: 0; | 239 background-position: 0; |
240 } | 240 } |
241 to { | 241 to { |
242 background-position: -576px; | 242 background-position: -576px; |
243 } | 243 } |
244 } | 244 } |
245 | 245 |
OLD | NEW |