| 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 #dialog-content { | |
| 6 -webkit-padding-end: 0; | |
| 7 -webkit-padding-start: 0; | |
| 8 margin-top: 0; | |
| 9 } | |
| 10 | |
| 11 .dialog-top-row { | |
| 12 align-items: center; | |
| 13 border-bottom: 1px solid gainsboro; | |
| 14 display: flex; | |
| 15 padding-bottom: 5px; | |
| 16 padding-top: 5px; | |
| 17 } | |
| 18 | |
| 19 .dialog-title { | |
| 20 flex: 1; | |
| 21 font-size: 1.13em; | |
| 22 } | |
| 23 | |
| 24 .dialog-body { | |
| 25 font-size: 1em; | |
| 26 margin: 20px 0; | |
| 27 } | |
| 28 | |
| 29 .dialog-title, | |
| 30 .dialog-body { | |
| 31 -webkit-padding-end: 24px; | |
| 32 -webkit-padding-start: 24px; | |
| 33 } | |
| 34 | |
| 35 .action-button { | |
| 36 -webkit-margin-start: 10px; | |
| 37 background-color: rgb(66, 133, 244); | |
| 38 color: white; | |
| 39 font-weight: 500; | |
| 40 } | |
| 41 | |
| 42 .cancel-button { | |
| 43 color: rgb(109, 109, 109); | |
| 44 font-weight: 500; | |
| 45 } | |
| 46 | |
| 47 paper-button { | 5 paper-button { |
| 48 margin: 0; | 6 margin: 0; |
| 49 } | 7 } |
| 50 | 8 |
| 51 a { | 9 a { |
| 52 color: rgb(66, 133, 244); | 10 color: rgb(66, 133, 244); |
| 53 text-decoration: none; | 11 text-decoration: none; |
| 54 } | 12 } |
| 55 | |
| 56 .explanation { | |
| 57 margin-bottom: 35px; | |
| 58 } | |
| 59 | |
| 60 .button-container { | |
| 61 display: flex; | |
| 62 flex: 1; | |
| 63 justify-content: flex-end; | |
| 64 } | |
| OLD | NEW |