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 | 5 |
6 .norollback #rollback, | |
7 .norestart #reset-warning-restart, | |
8 .revert-promise #reset-info, | |
9 .revert-promise #rollback, | |
10 .revert-promise #reset-controls, | |
11 #powerwash-help-link, | |
12 #revert-promise { | |
13 display: none; | |
14 } | |
15 | |
16 .norollback #powerwash-help-link, | |
17 .revert-promise #revert-promise { | |
18 display: block; | |
19 } | |
20 | |
21 #reset { | 6 #reset { |
22 display: flex; | 7 display: flex; |
23 flex-flow: column; | 8 flex-flow: column; |
24 font-size: 16px; | 9 font-size: 16px; |
25 min-height: 423px; | 10 min-height: 423px; |
26 padding: 40px 17px 80px; | 11 padding: 40px 17px 80px; |
27 text-align: center; | 12 text-align: center; |
28 width: 722px; | 13 width: 722px; |
29 } | 14 } |
30 | 15 |
31 #reset #reset-controls { | 16 #reset #reset-controls { |
32 bottom: 40px; | 17 bottom: 40px; |
33 justify-content: center; | 18 justify-content: center; |
34 margin-top: auto; | 19 margin-top: auto; |
35 } | 20 } |
36 | 21 |
37 #reset-controls button { | 22 #reset-controls button { |
38 margin: 0 10px; | 23 margin: 0 10px; |
39 } | 24 } |
40 | 25 |
41 #reset #reset-warning-icon { | 26 #reset #reset-warning-icon { |
42 height: 112px; | 27 height: 112px; |
43 } | 28 } |
44 | 29 |
45 #reset #reset-warning-msg { | 30 #reset #reset-warning-msg, |
| 31 #reset #powerwash-warning-msg, |
| 32 #reset #powerwash-and-rollback-warning-msg { |
46 color: #606060; | 33 color: #606060; |
47 font-size: 22px; | 34 font-size: 22px; |
48 padding: 5px 45px 30px; | 35 padding: 5px 45px 30px; |
49 } | 36 } |
50 | 37 |
51 .reset-text { | 38 .reset-text { |
52 color: #606060; | 39 color: #606060; |
53 } | 40 } |
54 | 41 |
55 #reset #reset-warning-details, | 42 #reset #reset-warning-details, |
56 #reset #reset-revert-promise-msg { | 43 #reset #reset-revert-promise-msg { |
57 padding: 20px 40px 0; | 44 padding: 20px 40px 0; |
58 } | 45 } |
59 | 46 |
60 #reset #reset-warning-restart { | 47 #reset #reset-warning-restart { |
61 padding: 30px 40px 0; | 48 padding: 30px 40px 0; |
62 } | 49 } |
63 | 50 |
64 #reset #rollback { | 51 #reset #rollback { |
65 padding: 30px 40px 10px; | 52 padding: 30px 40px 10px; |
66 } | 53 } |
67 | 54 |
68 #reset #reset-revert-spinner-message { | 55 #reset #reset-revert-spinner-message { |
69 display: inline-block; | 56 display: inline-block; |
70 padding: 25px 0; | 57 padding: 25px 0; |
71 } | 58 } |
| 59 |
| 60 .powerwash-proposal-specific, |
| 61 .powerwash-confirm-specific, |
| 62 .rollback-confirm-specific, |
| 63 .revert-promise-specific, |
| 64 .restart-required-specific { |
| 65 display: none; |
| 66 } |
| 67 |
| 68 .powerwash-proposal-view .powerwash-proposal-specific, |
| 69 .powerwash-confirm-view .powerwash-confirm-specific, |
| 70 .rollback-confirm-view .rollback-confirm-specific, |
| 71 .restart-required-view .restart-required-specific, |
| 72 .revert-promise-view .revert-promise-specific { |
| 73 display: block; |
| 74 } |
| 75 |
| 76 #reset-restart-button, |
| 77 #reset-button, |
| 78 #reset-toconfirm-button, |
| 79 .revert-promise-view #reset-controls { |
| 80 display: none; |
| 81 } |
| 82 |
| 83 .restart-required-view #reset-restart-button, |
| 84 .powerwash-confirm-view #reset-button, |
| 85 .rollback-confirm-view #reset-button, |
| 86 .powerwash-proposal-view #reset-toconfirm-button { |
| 87 display: inline-block; |
| 88 } |
| 89 |
OLD | NEW |