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 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 | 28 |
29 .step.right { | 29 .step.right { |
30 -webkit-transform: translateX(50px); | 30 -webkit-transform: translateX(50px); |
31 } | 31 } |
32 | 32 |
33 .step.left { | 33 .step.left { |
34 -webkit-transform: translateX(-50px) | 34 -webkit-transform: translateX(-50px) |
35 } | 35 } |
36 | 36 |
| 37 .step.fullscreen { |
| 38 height: 100%; |
| 39 left: 0; |
| 40 right: 0; |
| 41 top: 0; |
| 42 width: 100%; |
| 43 } |
| 44 |
37 .step-controls { | 45 .step-controls { |
38 -webkit-box-pack: end; | 46 -webkit-box-pack: end; |
39 -webkit-padding-end: 34px; /* Double the padding of .step */ | 47 -webkit-padding-end: 34px; /* Double the padding of .step */ |
40 bottom: 21px; | 48 bottom: 21px; |
41 box-sizing: border-box; | 49 box-sizing: border-box; |
42 display: -webkit-box; | 50 display: -webkit-box; |
43 height: 28px; | 51 height: 28px; |
44 position: absolute; | 52 position: absolute; |
45 width: 100%; | 53 width: 100%; |
46 } | 54 } |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 } | 169 } |
162 | 170 |
163 html[highlight=strong] #security-info a:focus, | 171 html[highlight=strong] #security-info a:focus, |
164 html[highlight=strong] #eula a:focus, | 172 html[highlight=strong] #eula a:focus, |
165 html[highlight=strong] .step-extra-controls a:focus, | 173 html[highlight=strong] .step-extra-controls a:focus, |
166 html[highlight=strong] .menu-control:focus, | 174 html[highlight=strong] .menu-control:focus, |
167 html[highlight=strong] input[type='button']:focus, | 175 html[highlight=strong] input[type='button']:focus, |
168 html[highlight=strong] button:focus { | 176 html[highlight=strong] button:focus { |
169 box-shadow: 0 0 23px rgb(77, 144, 254) !important; | 177 box-shadow: 0 0 23px rgb(77, 144, 254) !important; |
170 } | 178 } |
OLD | NEW |