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 #resetDialog { | |
6 max-width: 500px; | |
7 min-width: 300px; | |
Dan Beam
2015/10/29 00:46:10
i think internet settings also shows dialogs. can
dpapad
2015/10/29 01:33:09
I 'll look into this tomorrow. Even if sharing CSS
| |
8 } | |
9 | |
10 #resetButton { | |
11 background-color: rgb(120, 120, 120); | |
12 color: white; | |
13 margin-left: 10px; | |
Dan Beam
2015/10/29 00:46:10
RTL
dpapad
2015/10/29 01:33:09
Are you suggesting using -webkit-margin-start inst
Dan Beam
2015/10/29 02:20:25
yes
dpapad
2015/10/29 17:59:19
Done.
| |
14 } | |
15 | |
16 a, | |
17 #cancelButton { | |
18 color: rgb(94, 94, 94); | |
19 } | |
20 | |
21 | |
22 #explanation { | |
23 margin: 10px 0; | |
24 } | |
25 | |
26 #buttonContainer { | |
27 margin-bottom: 15px; | |
28 } | |
29 | |
30 a { | |
31 margin: auto; | |
32 text-decoration: none; | |
33 text-transform: uppercase; | |
Dan Beam
2015/10/29 00:46:10
should we be using paper-button instead then?
dpapad
2015/10/29 01:33:09
I tried this, but makes things more complicated. I
Dan Beam
2015/10/29 02:20:25
an <a> tag with text-transform uppercase is very v
dpapad
2015/10/29 17:59:19
Done.
| |
34 width: 100%; | |
35 } | |
36 | |
37 #sendSettings { | |
38 background-color: rgb(236, 236, 236); | |
39 margin: 0; | |
40 padding: 20px; | |
41 } | |
OLD | NEW |