Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 10 matching lines...) Expand all Loading... | |
21 font-size: 11px; | 21 font-size: 11px; |
22 box-sizing: border-box; | 22 box-sizing: border-box; |
23 } | 23 } |
24 | 24 |
25 html | 25 html |
26 { | 26 { |
27 height: 100%; | 27 height: 100%; |
28 overflow: hidden; | 28 overflow: hidden; |
29 } | 29 } |
30 | 30 |
31 a | |
32 { | |
33 color: inherit; | |
34 } | |
35 | |
31 body | 36 body |
32 { | 37 { |
33 margin: 0; | 38 margin: 0; |
39 color: #303942; | |
34 display: flex; | 40 display: flex; |
35 height: 100%; | 41 height: 100%; |
36 flex-direction: column; | 42 flex-direction: column; |
37 } | 43 } |
38 | 44 |
39 body, a | |
Thomas Greiner
2018/04/03 12:20:29
Coding style: "Separate selectors and declarations
kzar
2018/04/03 15:15:40
Done.
| |
40 { | |
41 color: #303942; | |
42 } | |
43 | |
44 body.default | 45 body.default |
45 { | 46 { |
46 background-color: #ffffff; | 47 background-color: #ffffff; |
47 } | 48 } |
48 | 49 |
49 body.dark, body.dark a | 50 body.dark |
50 { | 51 { |
51 color: #ffffff; | 52 color: #ffffff; |
52 } | 53 } |
53 | 54 |
54 table | 55 table |
55 { | 56 { |
56 table-layout: fixed; | 57 table-layout: fixed; |
57 width: 100%; | 58 width: 100%; |
58 border-collapse: collapse; | 59 border-collapse: collapse; |
59 } | 60 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 body.dark #items table | 124 body.dark #items table |
124 { | 125 { |
125 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=); | 126 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=); |
126 } | 127 } |
127 | 128 |
128 #items tr | 129 #items tr |
129 { | 130 { |
130 height: 40px; | 131 height: 40px; |
131 } | 132 } |
132 | 133 |
133 #items tr[data-state=blocked], #items tr[data-state=blocked] a | 134 #items tr[data-state=blocked] |
134 { | 135 { |
135 color: red; | 136 color: red; |
136 } | 137 } |
137 | 138 |
138 body.dark #items tr[data-state=blocked], body.dark #items tr[data-state=blocked] a | 139 body.dark #items tr[data-state=blocked] |
139 { | 140 { |
140 color: #ff3a3a; | 141 color: #ff3a3a; |
141 } | 142 } |
142 | 143 |
143 #items tr[data-state=whitelisted], #items tr[data-state=whitelisted] a | 144 #items tr[data-state=whitelisted] |
144 { | 145 { |
145 color: green; | 146 color: green; |
146 } | 147 } |
147 | 148 |
148 body.dark #items tr[data-state=whitelisted], body.dark #items tr[data-state=whit elisted] a | 149 body.dark #items tr[data-state=whitelisted] |
149 { | 150 { |
150 color: #389c22; | 151 color: #389c22; |
151 } | 152 } |
152 | 153 |
153 #items[data-filter-state=blocked] tr:not([data-state=blocked]), | 154 #items[data-filter-state=blocked] tr:not([data-state=blocked]), |
154 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) | 155 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) |
155 { | 156 { |
156 display: none; | 157 display: none; |
157 } | 158 } |
158 | 159 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
243 | 244 |
244 .filtered-by-search | 245 .filtered-by-search |
245 { | 246 { |
246 display: none; | 247 display: none; |
247 } | 248 } |
248 | 249 |
249 body.dark #reload | 250 body.dark #reload |
250 { | 251 { |
251 color: #2a67e7; | 252 color: #2a67e7; |
252 } | 253 } |
LEFT | RIGHT |