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 { | |
dschuyler
2015/12/02 01:02:01
Would .settings-box work here?
dpapad
2015/12/02 03:07:49
I thought about this but it seems that settings-bo
Dan Beam
2015/12/02 03:26:43
agreed ^
we could compose out a "top-border" or "
| |
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; | |
Dan Beam
2015/12/02 03:26:43
FYI: I don't disagree with what you're doing, but
| |
27 } | |
28 | |
29 .action-button { | |
30 -webkit-margin-start: 10px; | |
31 background-color: rgb(66, 133, 244); | |
32 color: white; | |
33 font-weight: 500; | |
34 } | |
35 | |
36 .cancel-button { | |
dschuyler
2015/12/02 01:02:01
Let's change this to something like .highlight-but
dpapad
2015/12/02 03:07:49
I am not opposed to this, but I believe it is bett
Dan Beam
2015/12/02 03:26:43
fine with per-component css files, also fine with
dschuyler
2015/12/02 21:45:22
Nit: I feel that "cancel" is a bit over-specific -
dpapad
2015/12/02 22:21:59
I am a bit confused by the suggested naming (highl
Dan Beam
2015/12/02 23:12:09
why not just action-button or default-button for t
| |
37 color: rgb(66, 133, 244); | |
38 font-weight: 500; | |
39 } | |
40 | |
41 paper-button { | |
42 margin: 0; | |
43 } | |
44 | |
45 .explanation { | |
46 margin-bottom: 35px; | |
47 } | |
48 | |
49 .action-buttons { | |
50 display: flex; | |
51 flex: 1; | |
52 justify-content: flex-end; | |
53 } | |
OLD | NEW |