| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 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 13 matching lines...) Expand all Loading... | |
| 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 body | 31 body |
| 32 { | 32 { |
| 33 margin: 0; | 33 margin: 0; |
| 34 color: #303942; | |
| 35 display: flex; | 34 display: flex; |
| 36 height: 100%; | 35 height: 100%; |
| 37 flex-direction: column; | 36 flex-direction: column; |
| 38 } | 37 } |
| 39 | 38 |
| 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 | |
| 40 body.default | 44 body.default |
| 41 { | 45 { |
| 42 background-color: #ffffff; | 46 background-color: #ffffff; |
| 43 } | 47 } |
| 44 | 48 |
| 45 body.dark | 49 body.dark, body.dark a |
| 46 { | 50 { |
| 47 color: #ffffff; | 51 color: #ffffff; |
| 48 } | 52 } |
| 49 | 53 |
| 50 table | 54 table |
| 51 { | 55 { |
| 52 table-layout: fixed; | 56 table-layout: fixed; |
| 53 width: 100%; | 57 width: 100%; |
| 54 border-collapse: collapse; | 58 border-collapse: collapse; |
| 55 } | 59 } |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 119 body.dark #items table | 123 body.dark #items table |
| 120 { | 124 { |
| 121 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=); | 125 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=); |
| 122 } | 126 } |
| 123 | 127 |
| 124 #items tr | 128 #items tr |
| 125 { | 129 { |
| 126 height: 40px; | 130 height: 40px; |
| 127 } | 131 } |
| 128 | 132 |
| 129 #items tr[data-state=blocked] | 133 #items tr[data-state=blocked], #items tr[data-state=blocked] a |
| 130 { | 134 { |
| 131 color: red; | 135 color: red; |
| 132 } | 136 } |
| 133 | 137 |
| 134 body.dark #items tr[data-state=blocked] | 138 body.dark #items tr[data-state=blocked], body.dark #items tr[data-state=blocked] a |
| 135 { | 139 { |
| 136 color: #ff3a3a; | 140 color: #ff3a3a; |
| 137 } | 141 } |
| 138 | 142 |
| 139 #items tr[data-state=whitelisted] | 143 #items tr[data-state=whitelisted], #items tr[data-state=whitelisted] a |
| 140 { | 144 { |
| 141 color: green; | 145 color: green; |
| 142 } | 146 } |
| 143 | 147 |
| 144 body.dark #items tr[data-state=whitelisted] | 148 body.dark #items tr[data-state=whitelisted], body.dark #items tr[data-state=whit elisted] a |
| 145 { | 149 { |
| 146 color: #389c22; | 150 color: #389c22; |
| 147 } | 151 } |
| 148 | 152 |
| 149 #items[data-filter-state=blocked] tr:not([data-state=blocked]), | 153 #items[data-filter-state=blocked] tr:not([data-state=blocked]), |
| 150 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) | 154 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) |
| 151 { | 155 { |
| 152 display: none; | 156 display: none; |
| 153 } | 157 } |
| 154 | 158 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 169 display: none; | 173 display: none; |
| 170 } | 174 } |
| 171 | 175 |
| 172 .url | 176 .url |
| 173 { | 177 { |
| 174 width: 100%; | 178 width: 100%; |
| 175 } | 179 } |
| 176 | 180 |
| 177 .resource-link { | 181 .resource-link { |
| 178 text-decoration: none; | 182 text-decoration: none; |
| 179 color: #303942; | |
| 180 } | 183 } |
| 181 | 184 |
| 182 .resource-link:hover { | 185 .resource-link:hover { |
| 183 text-decoration: underline; | 186 text-decoration: underline; |
| 184 } | 187 } |
| 185 | 188 |
| 186 .action-wrapper | 189 .action-wrapper |
| 187 { | 190 { |
| 188 display: flex; | 191 display: flex; |
| 189 width: 100%; | 192 width: 100%; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 240 | 243 |
| 241 .filtered-by-search | 244 .filtered-by-search |
| 242 { | 245 { |
| 243 display: none; | 246 display: none; |
| 244 } | 247 } |
| 245 | 248 |
| 246 body.dark #reload | 249 body.dark #reload |
| 247 { | 250 { |
| 248 color: #2a67e7; | 251 color: #2a67e7; |
| 249 } | 252 } |
| OLD | NEW |