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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 11441008: [web_dev_style] Changing :pseudo-element to ::pseudo-element to match (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 .menu-control { 203 .menu-control {
204 cursor: default; 204 cursor: default;
205 } 205 }
206 206
207 #header-sections { 207 #header-sections {
208 display: inline-block; 208 display: inline-block;
209 height: 30px; 209 height: 30px;
210 position: relative; 210 position: relative;
211 } 211 }
212 212
213 .header-section:before { 213 .header-section::before {
214 /* Divider in header between product name and title, 214 /* Divider in header between product name and title,
215 like "[Product name] > [step header]" */ 215 like "[Product name] > [step header]" */
216 content: '\00A0\203A\00A0\00A0'; 216 content: '\00A0\203A\00A0\00A0';
217 } 217 }
218 218
219 .header-section { 219 .header-section {
220 -webkit-transition: left 200ms, opacity 200ms ease-in-out; 220 -webkit-transition: left 200ms, opacity 200ms ease-in-out;
221 position: absolute; 221 position: absolute;
222 text-transform: lowercase; 222 text-transform: lowercase;
223 width: 20em; 223 width: 20em;
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 width: 100%; 1406 width: 100%;
1407 } 1407 }
1408 1408
1409 .background-initial { 1409 .background-initial {
1410 opacity: 0; 1410 opacity: 0;
1411 } 1411 }
1412 1412
1413 .background-final { 1413 .background-final {
1414 opacity: 1; 1414 opacity: 1;
1415 } 1415 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698