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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 { | 610 { |
611 display: none; | 611 display: none; |
612 } | 612 } |
613 | 613 |
614 body[data-tab="advanced-allFilterLists"] #all-filter-lists, | 614 body[data-tab="advanced-allFilterLists"] #all-filter-lists, |
615 body[data-tab="advanced-customFilters"] #custom-filters | 615 body[data-tab="advanced-customFilters"] #custom-filters |
616 { | 616 { |
617 display: block; | 617 display: block; |
618 } | 618 } |
619 | 619 |
620 body[data-tab="advanced-allFilterLists"] [data-tab="advanced-allFilterLists"], | 620 body[data-tab="advanced-allFilterLists"] #content-advanced [data-tab="advanced-a
llFilterLists"], |
621 body[data-tab="advanced-customFilters"] [data-tab="advanced-customFilters"] | 621 body[data-tab="advanced-customFilters"] #content-advanced [data-tab="advanced-cu
stomFilters"] |
622 { | 622 { |
623 border-bottom: 2px solid #1E8728; | 623 border-bottom: 2px solid #1E8728; |
624 padding-bottom: 10px; | 624 padding-bottom: 10px; |
625 color: black; | 625 color: black; |
626 font-weight: 600; | 626 font-weight: 600; |
627 } | 627 } |
628 | 628 |
629 #all-filter-lists .table | 629 #all-filter-lists .table |
630 { | 630 { |
631 display: inline-block; | 631 display: inline-block; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 { | 700 { |
701 color: #3A7BA6; | 701 color: #3A7BA6; |
702 text-decoration: none; | 702 text-decoration: none; |
703 cursor: pointer; | 703 cursor: pointer; |
704 } | 704 } |
705 | 705 |
706 #all-filter-lists .table li:last-of-type > span:last-child | 706 #all-filter-lists .table li:last-of-type > span:last-child |
707 { | 707 { |
708 -webkit-margin-start: auto; | 708 -webkit-margin-start: auto; |
709 -moz-margin-start: auto; | 709 -moz-margin-start: auto; |
| 710 } |
| 711 |
| 712 #all-filter-lists li.show-message .date, |
| 713 #all-filter-lists li.show-message .time, |
| 714 #all-filter-lists li:not(.show-message) .message |
| 715 { |
| 716 display: none; |
710 } | 717 } |
711 | 718 |
712 .date::before | 719 .date::before |
713 { | 720 { |
714 content: ""; | 721 content: ""; |
715 -webkit-margin-end: 6px; | 722 -webkit-margin-end: 6px; |
716 -moz-margin-end: 6px; | 723 -moz-margin-end: 6px; |
717 height: 12px; | 724 height: 12px; |
718 width: 12px; | 725 width: 12px; |
719 background-position: -7px -49px; | 726 background-position: -7px -49px; |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1305 #other-language .button-add::before | 1312 #other-language .button-add::before |
1306 { | 1313 { |
1307 display: none; | 1314 display: none; |
1308 } | 1315 } |
1309 | 1316 |
1310 #other-language .display | 1317 #other-language .display |
1311 { | 1318 { |
1312 -webkit-margin-start: 10px; | 1319 -webkit-margin-start: 10px; |
1313 -moz-margin-start: 10px; | 1320 -moz-margin-start: 10px; |
1314 } | 1321 } |
LEFT | RIGHT |