| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 tr:not(:hover) .action | 167 tr:not(:hover) .action |
| 168 { | 168 { |
| 169 display: none; | 169 display: none; |
| 170 } | 170 } |
| 171 | 171 |
| 172 .url | 172 .url |
| 173 { | 173 { |
| 174 width: 100%; | 174 width: 100%; |
| 175 } | 175 } |
| 176 | 176 |
| 177 .resourceLink | 177 .resource-link { |
| 178 { | 178 text-decoration: none; |
| 179 cursor: pointer; | 179 color: #303942; |
| 180 } | 180 } |
| 181 | 181 |
| 182 .resourceLink:hover { | 182 .resource-link:hover { |
| 183 text-decoration: underline; | 183 text-decoration: underline; |
| 184 } | 184 } |
| 185 | 185 |
| 186 .action-wrapper | 186 .action-wrapper |
| 187 { | 187 { |
| 188 display: flex; | 188 display: flex; |
| 189 width: 100%; | 189 width: 100%; |
| 190 } | 190 } |
| 191 | 191 |
| 192 .action | 192 .action |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 .filtered-by-search | 241 .filtered-by-search |
| 242 { | 242 { |
| 243 display: none; | 243 display: none; |
| 244 } | 244 } |
| 245 | 245 |
| 246 body.dark #reload | 246 body.dark #reload |
| 247 { | 247 { |
| 248 color: #2a67e7; | 248 color: #2a67e7; |
| 249 } | 249 } |
| OLD | NEW |