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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen.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 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 7
8 .step { 8 .step {
9 box-sizing: border-box; 9 box-sizing: border-box;
10 position: absolute; 10 position: absolute;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 #security-info a:focus, 122 #security-info a:focus,
123 #eula a:focus, 123 #eula a:focus,
124 .step-extra-controls a:focus { 124 .step-extra-controls a:focus {
125 -webkit-transition: outline-color 200ms; 125 -webkit-transition: outline-color 200ms;
126 /* Note: May use 1px solid here. */ 126 /* Note: May use 1px solid here. */
127 outline-color: rgb(77, 144, 254); 127 outline-color: rgb(77, 144, 254);
128 } 128 }
129 129
130 .step-extra-controls > *:not(:first-child) { 130 .step-extra-controls > *:not(:first-child) {
131 -webkit-margin-before: 7px; 131 margin-top: 7px;
132 } 132 }
133 133
134 html[dir=rtl] .step-extra-controls { 134 html[dir=rtl] .step-extra-controls {
135 left: auto; 135 left: auto;
136 right: 49px; 136 right: 49px;
137 } 137 }
138 138
139 #oobe.autolaunch #autolaunch-confirm-button, 139 #oobe.autolaunch #autolaunch-confirm-button,
140 #oobe.autolaunch #autolaunch-cancel-button, 140 #oobe.autolaunch #autolaunch-cancel-button,
141 #oobe.connect #continue-button, 141 #oobe.connect #continue-button,
(...skipping 29 matching lines...) Expand all
171 171
172 html[highlight=strong] #security-info a:focus, 172 html[highlight=strong] #security-info a:focus,
173 html[highlight=strong] #eula a:focus, 173 html[highlight=strong] #eula a:focus,
174 html[highlight=strong] .step-extra-controls a:focus, 174 html[highlight=strong] .step-extra-controls a:focus,
175 html[highlight=strong] .menu-control:focus, 175 html[highlight=strong] .menu-control:focus,
176 html[highlight=strong] input[type='button']:focus, 176 html[highlight=strong] input[type='button']:focus,
177 html[highlight=strong] button:focus { 177 html[highlight=strong] button:focus {
178 box-shadow: 0 0 23px rgb(77, 144, 254) !important; 178 box-shadow: 0 0 23px rgb(77, 144, 254) !important;
179 } 179 }
180 180
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698