OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #content-settings-page { | 5 #content-settings-page { |
6 min-width: 620px; | 6 min-width: 620px; |
7 } | 7 } |
8 | 8 |
9 #content-settings-exceptions-area { | 9 #content-settings-exceptions-area { |
10 min-width: 540px; | 10 min-width: 540px; |
11 } | 11 } |
12 | 12 |
13 .exception-pattern { | 13 .exception-pattern { |
14 -webkit-box-flex: 1; | 14 -webkit-box-flex: 1; |
15 -webkit-margin-end: 10px; | 15 -webkit-margin-end: 10px; |
16 -webkit-margin-start: 14px; | 16 -webkit-margin-start: 14px; |
17 } | 17 } |
18 | 18 |
19 .exception-setting { | 19 .exception-setting { |
20 display: inline-block; | 20 display: inline-block; |
21 width: 120px; | 21 width: 120px; |
22 } | 22 } |
23 | 23 |
24 .settings-list div[role='listitem'][controlled-by='policy'] .exception-setting, | |
25 .settings-list div[role='listitem'][controlled-by='extension'] | |
26 .exception-setting { | |
27 width: 112px; | |
28 } | |
29 | |
24 select.exception-setting { | 30 select.exception-setting { |
25 vertical-align: middle; | 31 vertical-align: middle; |
26 } | 32 } |
27 | 33 |
34 .overruled .exception-setting { | |
35 width: 96px; | |
36 } | |
37 | |
38 .overruled span.exception-setting { | |
Bernhard Bauer
2016/05/18 09:55:13
Why is the span selector necessary?
huangs
2016/05/18 13:52:49
If we do don't do this, then "select.exception-set
Bernhard Bauer
2016/05/19 14:20:40
Hm... can we use an additional class for this? Oth
huangs
2016/05/20 15:16:46
This is applied to ".overruled span.exception-sett
Bernhard Bauer
2016/05/23 13:34:11
Mostly I'd be concerned that <span> is too narrow
huangs
2016/05/24 05:02:00
Acknowledged.
| |
39 text-decoration: line-through; | |
40 } | |
41 | |
28 #exception-column-headers { | 42 #exception-column-headers { |
29 -webkit-margin-start: 17px; | 43 -webkit-margin-start: 17px; |
30 display: -webkit-box; | 44 display: -webkit-box; |
31 margin-top: 17px; | 45 margin-top: 17px; |
32 } | 46 } |
33 | 47 |
34 #exception-column-headers > div { | 48 #exception-column-headers > div { |
35 font-weight: bold; | 49 font-weight: bold; |
36 } | 50 } |
37 | 51 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 display: -webkit-box; | 114 display: -webkit-box; |
101 } | 115 } |
102 | 116 |
103 #media-audio-column { | 117 #media-audio-column { |
104 width: 6em; | 118 width: 6em; |
105 } | 119 } |
106 | 120 |
107 #media-video-column { | 121 #media-video-column { |
108 width: 8.5em; | 122 width: 8.5em; |
109 } | 123 } |
124 y | |
Bernhard Bauer
2016/05/18 09:55:13
Remove
huangs
2016/05/18 13:52:49
Done.
| |
OLD | NEW |