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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
605 background-color: transparent; | 605 background-color: transparent; |
606 border: 0px; | 606 border: 0px; |
607 color: #3A7BA6; | 607 color: #3A7BA6; |
608 cursor: pointer; | 608 cursor: pointer; |
609 } | 609 } |
610 | 610 |
611 /* | 611 /* |
612 Advanced tab content | 612 Advanced tab content |
613 */ | 613 */ |
614 | 614 |
615 #tweaks .table li | 615 #tweaks.table li |
616 { | 616 { |
617 padding-bottom: 0px; | 617 padding-bottom: 0px; |
618 } | 618 } |
619 | 619 |
620 #filter-lists > div | 620 #filter-lists > div |
621 { | 621 { |
622 display: none; | 622 display: none; |
623 } | 623 } |
624 | 624 |
625 body[data-tab="advanced-allFilterLists"] #all-filter-lists, | 625 body[data-tab="advanced-allFilterLists"] #all-filter-lists, |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1273 margin-bottom: 20px; | 1273 margin-bottom: 20px; |
1274 word-wrap: break-word; | 1274 word-wrap: break-word; |
1275 } | 1275 } |
1276 | 1276 |
1277 body:not([data-dialog="custom"]) #dialog-title-custom, | 1277 body:not([data-dialog="custom"]) #dialog-title-custom, |
1278 body:not([data-dialog="custom"]) #dialog-content-custom, | 1278 body:not([data-dialog="custom"]) #dialog-content-custom, |
1279 body:not([data-dialog="language"]) #dialog-title-language, | 1279 body:not([data-dialog="language"]) #dialog-title-language, |
1280 body:not([data-dialog="language"]) #dialog-content-language, | 1280 body:not([data-dialog="language"]) #dialog-content-language, |
1281 body:not([data-dialog="predefined"]) #dialog-title-predefined, | 1281 body:not([data-dialog="predefined"]) #dialog-title-predefined, |
1282 body:not([data-dialog="predefined"]) #dialog-content-predefined, | 1282 body:not([data-dialog="predefined"]) #dialog-content-predefined, |
1283 body:not([data-dialog]) #dialog | 1283 body:not([data-dialog]) #dialog |
saroyanm
2016/02/29 14:34:39
Can you also please remove this style from the dia
Thomas Greiner
2016/02/29 17:32:43
Removing this rule causes the dialog to show all v
| |
1284 { | 1284 { |
1285 display: none; | 1285 display: none; |
1286 } | 1286 } |
1287 | 1287 |
1288 #dialog-content-language .dialog-content-block | 1288 #dialog-content-language .dialog-content-block |
1289 { | 1289 { |
1290 display: flex; | 1290 display: flex; |
1291 flex-direction: column; | 1291 flex-direction: column; |
1292 height: 120px; | 1292 height: 120px; |
1293 } | 1293 } |
(...skipping 20 matching lines...) Expand all Loading... | |
1314 #other-language .button-add::before | 1314 #other-language .button-add::before |
1315 { | 1315 { |
1316 display: none; | 1316 display: none; |
1317 } | 1317 } |
1318 | 1318 |
1319 #other-language .display | 1319 #other-language .display |
1320 { | 1320 { |
1321 -webkit-margin-start: 10px; | 1321 -webkit-margin-start: 10px; |
1322 -moz-margin-start: 10px; | 1322 -moz-margin-start: 10px; |
1323 } | 1323 } |
LEFT | RIGHT |