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