| 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 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * Common dialog styles for Material Design settings. | 7 * Common dialog styles for Material Design settings. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #dialog-content { | 10 #dialog-content { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 color: rgb(109, 109, 109); | 49 color: rgb(109, 109, 109); |
| 50 font-weight: 500; | 50 font-weight: 500; |
| 51 } | 51 } |
| 52 | 52 |
| 53 paper-dialog .explanation { | 53 paper-dialog .explanation { |
| 54 margin-bottom: 35px; | 54 margin-bottom: 35px; |
| 55 } | 55 } |
| 56 | 56 |
| 57 paper-dialog .button-container { | 57 paper-dialog .button-container { |
| 58 display: flex; | 58 display: flex; |
| 59 flex: 1; | |
| 60 justify-content: flex-end; | 59 justify-content: flex-end; |
| 61 } | 60 } |
| 62 | 61 |
| 63 paper-dialog paper-button { | 62 paper-dialog paper-button { |
| 64 margin: 0; | 63 margin: 0; |
| 65 min-width: auto; | 64 min-width: auto; |
| 66 } | 65 } |
| 67 | 66 |
| 68 paper-dialog paper-button[toggles][active] { | 67 paper-dialog paper-button[toggles][active] { |
| 69 background-color: LightGray; | 68 background-color: LightGray; |
| 70 } | 69 } |
| OLD | NEW |