OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 .blocking { | 5 .blocking { |
6 background-color: white; | 6 background-color: white; |
7 overflow: hidden; | 7 overflow: hidden; |
8 position: relative; | 8 position: relative; |
9 text-align: center; | 9 text-align: center; |
10 } | 10 } |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 #blocking-icon { | 24 #blocking-icon { |
25 color: var(--google-red-500); | 25 color: var(--google-red-500); |
26 height: 75px; | 26 height: 75px; |
27 padding-top: 24px; | 27 padding-top: 24px; |
28 width: 75px; | 28 width: 75px; |
29 } | 29 } |
30 | 30 |
31 .non-blocking { | 31 .non-blocking { |
32 background-color: var(--paper-grey-800); | 32 background-color: var(--paper-grey-800); |
33 overflow: hidden; | |
34 padding: 16px; | 33 padding: 16px; |
35 width: inherit; | 34 width: inherit; |
36 } | 35 } |
37 | 36 |
38 .non-blocking > #buttons { | 37 .non-blocking > #buttons { |
39 display: flex; | 38 display: flex; |
40 flex-direction: row; | 39 flex-direction: row; |
41 justify-content: flex-end; | 40 justify-content: flex-end; |
42 width: 100%; | 41 width: 100%; |
43 } | 42 } |
44 | 43 |
45 .non-blocking > #buttons > #default-button { | 44 .non-blocking > #buttons > #default-button { |
46 -webkit-margin-end: 24px; | 45 -webkit-margin-end: 24px; |
47 } | 46 } |
48 | 47 |
49 .non-blocking > div > #title { | 48 .non-blocking > div > #title { |
| 49 -webkit-margin-end: 12px; |
| 50 -webkit-padding-end: 12px; |
50 color: rgba(255, 255, 255, 0.87); | 51 color: rgba(255, 255, 255, 0.87); |
| 52 overflow: hidden; |
51 } | 53 } |
52 | 54 |
53 paper-button { | 55 paper-button { |
54 margin: 0; | 56 margin: 0; |
55 } | 57 } |
OLD | NEW |