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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 { | 275 { |
276 /* Using ?query as a workaround to chromium bug #643716 */ | 276 /* Using ?query as a workaround to chromium bug #643716 */ |
277 background-image: url(icons/checkbox.svg?off#off); | 277 background-image: url(icons/checkbox.svg?off#off); |
278 } | 278 } |
279 | 279 |
280 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before | 280 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before |
281 { | 281 { |
282 background-image: url(icons/checkbox.svg?on#on); | 282 background-image: url(icons/checkbox.svg?on#on); |
283 } | 283 } |
284 | 284 |
| 285 button[role="checkbox"][aria-checked="true"].icon:disabled:not(.toggle)::before |
| 286 { |
| 287 background-image: url(icons/checkbox.svg?on-disabled#on-disabled); |
| 288 } |
| 289 |
285 button[role="checkbox"].icon.toggle::before | 290 button[role="checkbox"].icon.toggle::before |
286 { | 291 { |
287 background-image: url(icons/toggle.svg?on#on); | 292 background-image: url(icons/toggle.svg?on#on); |
288 } | 293 } |
289 | 294 |
290 button[role="checkbox"][aria-checked="false"].icon.toggle::before | 295 button[role="checkbox"][aria-checked="false"].icon.toggle::before |
291 { | 296 { |
292 background-image: url(icons/toggle.svg?off#off); | 297 background-image: url(icons/toggle.svg?off#off); |
293 } | 298 } |
294 | 299 |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1067 } | 1072 } |
1068 | 1073 |
1069 #dialog .table.list li button > span | 1074 #dialog .table.list li button > span |
1070 { | 1075 { |
1071 flex: none; | 1076 flex: none; |
1072 margin: 0rem 0.8rem; | 1077 margin: 0rem 0.8rem; |
1073 text-transform: none; | 1078 text-transform: none; |
1074 font-weight: 400; | 1079 font-weight: 400; |
1075 } | 1080 } |
1076 | 1081 |
| 1082 li.preconfigured [data-preconfigured="hide"], |
| 1083 li:not(.preconfigured) [data-preconfigured="show"] |
| 1084 { |
| 1085 display: none !important; |
| 1086 } |
| 1087 |
1077 /* | 1088 /* |
1078 Tooltips | 1089 Tooltips |
1079 */ | 1090 */ |
1080 | 1091 |
1081 .tooltip | 1092 .tooltip |
1082 { | 1093 { |
1083 position: relative; | 1094 position: relative; |
1084 margin: 0rem; | 1095 margin: 0rem; |
1085 line-height: 1.5rem; | 1096 line-height: 1.5rem; |
1086 text-decoration: none; | 1097 text-decoration: none; |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1561 font-size: 1rem; | 1572 font-size: 1rem; |
1562 color: #077CA6; | 1573 color: #077CA6; |
1563 background-color: #E1F2FA; | 1574 background-color: #E1F2FA; |
1564 } | 1575 } |
1565 | 1576 |
1566 #notification strong | 1577 #notification strong |
1567 { | 1578 { |
1568 flex: 1; | 1579 flex: 1; |
1569 text-align: center; | 1580 text-align: center; |
1570 } | 1581 } |
OLD | NEW |