OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 5 |
6 #outer-container { | 6 #outer-container { |
7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
9 -webkit-perspective: 600px; | 9 -webkit-perspective: 600px; |
10 bottom: 51px; /* Leave space for the header bar */ | 10 bottom: 51px; /* Leave space for the header bar */ |
11 display: -webkit-box; | 11 display: -webkit-box; |
12 left: 0; | 12 left: 0; |
13 position: absolute; | 13 position: absolute; |
14 right: 0; | 14 right: 0; |
15 top: 0; | 15 top: 0; |
16 } | 16 } |
17 | 17 |
18 #inner-container { | 18 #inner-container { |
19 border-radius: 2px; | 19 border-radius: 2px; |
20 padding: 0; | 20 padding: 0; |
21 position: relative; | 21 position: relative; |
22 } | 22 } |
23 | 23 |
24 #inner-container.animation { | 24 #inner-container.animation { |
25 overflow: hidden; | 25 overflow: hidden; |
26 } | 26 } |
27 | 27 |
| 28 #inner-container.disabled { |
| 29 opacity: 0.4; |
| 30 pointer-events: none; |
| 31 } |
| 32 |
28 /* Screens that have a border and background. */ | 33 /* Screens that have a border and background. */ |
29 #oobe.autolaunch #inner-container, | 34 #oobe.autolaunch #inner-container, |
30 #oobe.connect #inner-container, | 35 #oobe.connect #inner-container, |
31 #oobe.enrollment #inner-container, | 36 #oobe.enrollment #inner-container, |
32 #oobe.eula #inner-container, | 37 #oobe.eula #inner-container, |
33 #oobe.gaia-signin #inner-container, | 38 #oobe.gaia-signin #inner-container, |
34 #oobe.kiosk-enable #inner-container, | 39 #oobe.kiosk-enable #inner-container, |
35 #oobe.oauth-enrollment #inner-container, | 40 #oobe.oauth-enrollment #inner-container, |
36 #oobe.reset #inner-container, | 41 #oobe.reset #inner-container, |
37 #oobe.update #inner-container, | 42 #oobe.update #inner-container, |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 line-height: 31px; | 172 line-height: 31px; |
168 text-transform: lowercase; | 173 text-transform: lowercase; |
169 width: 23em; | 174 width: 23em; |
170 } | 175 } |
171 | 176 |
172 .header-section::before { | 177 .header-section::before { |
173 /* Divider in header between product name and title, | 178 /* Divider in header between product name and title, |
174 * like "[Product name] > [step header]". */ | 179 * like "[Product name] > [step header]". */ |
175 content: '\00A0\203A\00A0\00A0'; | 180 content: '\00A0\203A\00A0\00A0'; |
176 } | 181 } |
177 | |
OLD | NEW |