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

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

Issue 2398383002: ChromeOS: Update Welcome screen material design OOBE. (Closed)
Patch Set: Update after review. Created 4 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 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 * This contains common styling for all the OOBE screens. */ 5 * This contains common styling for all the OOBE screens. */
6 6
7 :root {
8 --oobe-roboto-medium: 500 12px Roboto;
9 }
10
7 .step { 11 .step {
8 box-sizing: border-box; 12 box-sizing: border-box;
9 position: absolute; 13 position: absolute;
10 } 14 }
11 15
12 .step.animated:not(.faded) { 16 .step.animated:not(.faded) {
13 -webkit-transition: -webkit-transform 200ms ease-in-out, 17 -webkit-transition: -webkit-transform 200ms ease-in-out,
14 opacity 200ms ease-in-out, 18 opacity 200ms ease-in-out,
15 visibility 200ms ease-in-out; 19 visibility 200ms ease-in-out;
16 } 20 }
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 169
166 html[highlight=strong] #security-info a:focus, 170 html[highlight=strong] #security-info a:focus,
167 html[highlight=strong] #eula a:focus, 171 html[highlight=strong] #eula a:focus,
168 html[highlight=strong] .step-extra-controls a:focus, 172 html[highlight=strong] .step-extra-controls a:focus,
169 html[highlight=strong] .menu-control:focus, 173 html[highlight=strong] .menu-control:focus,
170 html[highlight=strong] input[type='button']:focus, 174 html[highlight=strong] input[type='button']:focus,
171 html[highlight=strong] button:focus { 175 html[highlight=strong] button:focus {
172 box-shadow: 0 0 23px rgb(77, 144, 254) !important; 176 box-shadow: 0 0 23px rgb(77, 144, 254) !important;
173 } 177 }
174 178
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698