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 #resetDialog { | 5 #resetDialog { |
6 max-width: 500px; | 6 min-width; 300px; |
7 min-width: 300px; | 7 width: 500px; |
8 } | 8 } |
9 | 9 |
10 #reset { | 10 #reset { |
11 -webkit-margin-start: 10px; | 11 -webkit-margin-start: 10px; |
12 -webkit-padding-end: 15px; | 12 -webkit-padding-end: 15px; |
13 -webkit-padding-start: 15px; | 13 -webkit-padding-start: 15px; |
14 background-color: rgb(120, 120, 120); | 14 background-color: rgb(120, 120, 120); |
15 color: white; | 15 color: white; |
16 } | 16 } |
17 | 17 |
18 #learnMore, | 18 #learnMore, |
19 #cancel { | 19 #cancel { |
20 color: rgb(94, 94, 94); | 20 color: rgb(94, 94, 94); |
21 } | 21 } |
22 | 22 |
23 #explanation { | 23 #explanation { |
24 margin: 10px 0; | 24 margin: 10px 0; |
25 } | 25 } |
26 | 26 |
27 #buttonContainer { | 27 #buttonContainer { |
28 margin: 15px 0; | 28 margin: 15px 0; |
29 } | 29 } |
30 | 30 |
31 #sendSettings { | 31 #feedbackBar { |
32 background-color: rgb(236, 236, 236); | 32 background-color: rgb(236, 236, 236); |
33 margin: 0; | 33 margin: 0; |
34 padding: 20px; | 34 padding: 20px; |
35 } | 35 } |
36 | |
37 #settings { | |
38 font-size: 12px; | |
Dan Beam
2015/11/09 23:05:18
i think we generally use scale-able units (i.e. %)
dpapad
2015/11/09 23:37:48
Done.
| |
39 line-height: initial; | |
Dan Beam
2015/11/09 23:05:19
what is this doing?
dpapad
2015/11/09 23:37:48
http://imgur.com/a/pSIqv
| |
40 table-layout: fixed; | |
41 width: 100%; | |
42 } | |
43 | |
44 #settings .key { | |
45 color: #888; | |
46 padding-right: 5px; | |
47 text-align: right; | |
Dan Beam
2015/11/09 23:05:18
RTL
dpapad
2015/11/09 23:37:49
I prefer to address this in a separate CL.
1) The
Dan Beam
2015/11/09 23:42:03
this CL is supposed to port functionality, mainly
| |
48 vertical-align: top; | |
49 } | |
50 | |
51 #settings .value { | |
52 color: #333; | |
53 text-align: left; | |
54 white-space: pre-line; | |
55 } | |
Dan Beam
2015/11/09 23:05:18
i would do one of 2 things:
a) don't port over the
dpapad
2015/11/09 23:37:48
Thanks for the advice, but now both a and b are do
Dan Beam
2015/11/09 23:42:03
yes it is because people will think designers actu
Dan Beam
2015/11/10 01:41:30
people = our team
Dan Beam
2015/11/10 01:57:45
putting either a user-facing "OMG REMOVE THIS BEFO
| |
OLD | NEW |