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, | |
40 a | |
41 { | |
42 color: #303942; | |
43 } | |
44 | |
45 body.default | 45 body.default |
46 { | 46 { |
47 background-color: #ffffff; | 47 background-color: #ffffff; |
48 } | 48 } |
49 | 49 |
50 body.dark, | 50 body.dark |
51 body.dark a | |
52 { | 51 { |
53 color: #ffffff; | 52 color: #ffffff; |
54 } | 53 } |
55 | 54 |
56 table | 55 table |
57 { | 56 { |
58 table-layout: fixed; | 57 table-layout: fixed; |
59 width: 100%; | 58 width: 100%; |
60 border-collapse: collapse; | 59 border-collapse: collapse; |
61 } | 60 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 body.dark #items table | 124 body.dark #items table |
126 { | 125 { |
127 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ
BQAAACC4yPqcsID6OctMYCADs=); | 126 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ
BQAAACC4yPqcsID6OctMYCADs=); |
128 } | 127 } |
129 | 128 |
130 #items tr | 129 #items tr |
131 { | 130 { |
132 height: 40px; | 131 height: 40px; |
133 } | 132 } |
134 | 133 |
135 #items tr[data-state=blocked], | 134 #items tr[data-state=blocked] |
136 #items tr[data-state=blocked] a | |
137 { | 135 { |
138 color: red; | 136 color: red; |
139 } | 137 } |
140 | 138 |
141 body.dark #items tr[data-state=blocked], | 139 body.dark #items tr[data-state=blocked] |
142 body.dark #items tr[data-state=blocked] a | |
143 { | 140 { |
144 color: #ff3a3a; | 141 color: #ff3a3a; |
145 } | 142 } |
146 | 143 |
147 #items tr[data-state=whitelisted], | 144 #items tr[data-state=whitelisted] |
148 #items tr[data-state=whitelisted] a | |
149 { | 145 { |
150 color: green; | 146 color: green; |
151 } | 147 } |
152 | 148 |
153 body.dark #items tr[data-state=whitelisted], | 149 body.dark #items tr[data-state=whitelisted] |
154 body.dark #items tr[data-state=whitelisted] a | |
155 { | 150 { |
156 color: #389c22; | 151 color: #389c22; |
157 } | 152 } |
158 | 153 |
159 #items[data-filter-state=blocked] tr:not([data-state=blocked]), | 154 #items[data-filter-state=blocked] tr:not([data-state=blocked]), |
160 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) | 155 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) |
161 { | 156 { |
162 display: none; | 157 display: none; |
163 } | 158 } |
164 | 159 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 244 |
250 .filtered-by-search | 245 .filtered-by-search |
251 { | 246 { |
252 display: none; | 247 display: none; |
253 } | 248 } |
254 | 249 |
255 body.dark #reload | 250 body.dark #reload |
256 { | 251 { |
257 color: #2a67e7; | 252 color: #2a67e7; |
258 } | 253 } |
LEFT | RIGHT |