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

Side by Side Diff: ui/login/oobe.css

Issue 618163002: Remove -webkit-*-before/after in: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/screen_supervised_user_creation.css ('k') | ui/login/screen_container.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698