| 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 paper-dialog { | 10 paper-dialog { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 } | 38 } |
| 39 | 39 |
| 40 paper-dialog .title, | 40 paper-dialog .title, |
| 41 paper-dialog .body { | 41 paper-dialog .body { |
| 42 -webkit-padding-end: 24px; | 42 -webkit-padding-end: 24px; |
| 43 -webkit-padding-start: 24px; | 43 -webkit-padding-start: 24px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 paper-dialog .action-button { | 46 paper-dialog .action-button { |
| 47 -webkit-margin-start: 10px; | 47 -webkit-margin-start: 10px; |
| 48 background-color: rgb(66, 133, 244); | |
| 49 color: white; | |
| 50 font-weight: 500; | 48 font-weight: 500; |
| 51 } | 49 } |
| 52 | 50 |
| 51 paper-dialog .action-button:not([disabled]) { |
| 52 background-color: rgb(66, 133, 244); |
| 53 color: white; |
| 54 } |
| 55 |
| 53 paper-dialog .cancel-button { | 56 paper-dialog .cancel-button { |
| 54 color: rgb(109, 109, 109); | 57 color: rgb(109, 109, 109); |
| 55 font-weight: 500; | 58 font-weight: 500; |
| 56 } | 59 } |
| 57 | 60 |
| 58 paper-dialog .explanation { | 61 paper-dialog .explanation { |
| 59 margin-bottom: 35px; | 62 margin-bottom: 35px; |
| 60 } | 63 } |
| 61 | 64 |
| 62 paper-dialog .button-container { | 65 paper-dialog .button-container { |
| 63 display: flex; | 66 display: flex; |
| 64 justify-content: flex-end; | 67 justify-content: flex-end; |
| 65 } | 68 } |
| 66 | 69 |
| 67 paper-dialog paper-button { | 70 paper-dialog paper-button { |
| 68 margin: 0; | 71 margin: 0; |
| 69 min-width: auto; | 72 min-width: auto; |
| 70 } | 73 } |
| 71 | 74 |
| 72 paper-dialog paper-button[toggles][active] { | 75 paper-dialog paper-button[toggles][active] { |
| 73 background-color: LightGray; | 76 background-color: LightGray; |
| 74 } | 77 } |
| OLD | NEW |