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 { | 5 #dialog { |
6 min-width; 300px; | 6 min-width; 300px; |
7 width: 500px; | 7 width: 500px; |
8 } | 8 } |
9 | 9 |
10 #reset { | |
11 -webkit-margin-start: 10px; | |
12 -webkit-padding-end: 15px; | |
13 -webkit-padding-start: 15px; | |
14 background-color: rgb(66, 133, 244); | |
15 color: white; | |
16 font-weight: 500; | |
17 } | |
18 | |
19 #learnMore { | 10 #learnMore { |
20 color: rgb(94, 94, 94); | 11 color: rgb(94, 94, 94); |
21 } | |
22 | |
23 #cancel { | |
24 color: rgb(66, 133, 244); | |
25 font-weight: 500; | 12 font-weight: 500; |
26 } | 13 } |
27 | 14 |
28 #explanation { | |
29 margin: 10px 0; | |
30 } | |
31 | |
32 #buttonContainer { | |
33 margin: 15px 0; | |
34 } | |
35 | |
36 #feedbackBar { | 15 #feedbackBar { |
37 background-color: rgb(236, 236, 236); | 16 background-color: rgb(236, 236, 236); |
38 margin: 0; | 17 margin: 0; |
39 padding: 20px; | 18 padding: 20px; |
40 } | 19 } |
OLD | NEW |