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

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

Issue 2231143002: Cleanup: fix some CSS comment styles (especially copyrights) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaelpg@ review Created 4 years, 4 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 */
7 6
8 .step { 7 .step {
9 box-sizing: border-box; 8 box-sizing: border-box;
10 position: absolute; 9 position: absolute;
11 } 10 }
12 11
13 .step.animated:not(.faded) { 12 .step.animated:not(.faded) {
14 -webkit-transition: -webkit-transform 200ms ease-in-out, 13 -webkit-transition: -webkit-transform 200ms ease-in-out,
15 opacity 200ms ease-in-out, 14 opacity 200ms ease-in-out,
16 visibility 200ms ease-in-out; 15 visibility 200ms ease-in-out;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 165
167 html[highlight=strong] #security-info a:focus, 166 html[highlight=strong] #security-info a:focus,
168 html[highlight=strong] #eula a:focus, 167 html[highlight=strong] #eula a:focus,
169 html[highlight=strong] .step-extra-controls a:focus, 168 html[highlight=strong] .step-extra-controls a:focus,
170 html[highlight=strong] .menu-control:focus, 169 html[highlight=strong] .menu-control:focus,
171 html[highlight=strong] input[type='button']:focus, 170 html[highlight=strong] input[type='button']:focus,
172 html[highlight=strong] button:focus { 171 html[highlight=strong] button:focus {
173 box-shadow: 0 0 23px rgb(77, 144, 254) !important; 172 box-shadow: 0 0 23px rgb(77, 144, 254) !important;
174 } 173 }
175 174
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698