| 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 */ | |
| 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 Loading... |
| 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 |
| OLD | NEW |