| 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 23 matching lines...) Expand all Loading... |
| 34 padding: 16px; | 34 padding: 16px; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .non-blocking > #buttons { | 37 .non-blocking > #buttons { |
| 38 display: flex; | 38 display: flex; |
| 39 flex-direction: row; | 39 flex-direction: row; |
| 40 justify-content: flex-end; | 40 justify-content: flex-end; |
| 41 width: 100%; | 41 width: 100%; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .non-blocking > #buttons > .button { |
| 45 color: var(--paper-blue-300); |
| 46 } |
| 47 |
| 48 .non-blocking > #buttons > #default-button { |
| 49 -webkit-margin-end: 24px; |
| 50 } |
| 51 |
| 44 .non-blocking > div > #title { | 52 .non-blocking > div > #title { |
| 45 color: rgba(255, 255, 255, 0.87); | 53 color: rgba(255, 255, 255, 0.87); |
| 46 } | 54 } |
| 47 | 55 |
| 48 paper-button { | 56 paper-button { |
| 49 margin: 0; | 57 margin: 0; |
| 50 } | 58 } |
| OLD | NEW |