| OLD | NEW |
| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 right: 49px; | 132 right: 49px; |
| 133 } | 133 } |
| 134 | 134 |
| 135 #oobe.autolaunch #autolaunch-confirm-button, | 135 #oobe.autolaunch #autolaunch-confirm-button, |
| 136 #oobe.autolaunch #autolaunch-cancel-button, | 136 #oobe.autolaunch #autolaunch-cancel-button, |
| 137 #oobe.connect #continue-button, | 137 #oobe.connect #continue-button, |
| 138 #oobe.eula #accept-button, | 138 #oobe.eula #accept-button, |
| 139 #oobe.eula #back-button, | 139 #oobe.eula #back-button, |
| 140 #oobe.kiosk-enable #kiosk-cancel-button, | 140 #oobe.kiosk-enable #kiosk-cancel-button, |
| 141 #oobe.kiosk-enable #kiosk-enable-button, | 141 #oobe.kiosk-enable #kiosk-enable-button, |
| 142 #oobe.signin #signin-button, | |
| 143 #oobe.user-image #ok-button { | 142 #oobe.user-image #ok-button { |
| 144 display: block; | 143 display: block; |
| 145 } | 144 } |
| 146 | 145 |
| 147 #autolaunch-confirm-button, | 146 #autolaunch-confirm-button, |
| 148 #back-button, | 147 #back-button, |
| 149 #kiosk-enable-button, | 148 #kiosk-enable-button, |
| 150 #reset-button, | 149 #reset-button, |
| 151 #password-changed-back-button, | 150 #password-changed-back-button, |
| 152 #tos-back-button { | 151 #tos-back-button { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 167 | 166 |
| 168 html[highlight=strong] #security-info a:focus, | 167 html[highlight=strong] #security-info a:focus, |
| 169 html[highlight=strong] #eula a:focus, | 168 html[highlight=strong] #eula a:focus, |
| 170 html[highlight=strong] .step-extra-controls a:focus, | 169 html[highlight=strong] .step-extra-controls a:focus, |
| 171 html[highlight=strong] .menu-control:focus, | 170 html[highlight=strong] .menu-control:focus, |
| 172 html[highlight=strong] input[type='button']:focus, | 171 html[highlight=strong] input[type='button']:focus, |
| 173 html[highlight=strong] button:focus { | 172 html[highlight=strong] button:focus { |
| 174 box-shadow: 0 0 23px rgb(77, 144, 254) !important; | 173 box-shadow: 0 0 23px rgb(77, 144, 254) !important; |
| 175 } | 174 } |
| 176 | 175 |
| OLD | NEW |