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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 } | 710 } |
711 | 711 |
712 #all-filter-lists li > span | 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 | |
713 { | 715 { |
714 display: none; | 716 display: none; |
715 } | |
716 | |
717 #all-filter-lists li:not(.error):not(.progress) .date, | |
718 #all-filter-lists li:not(.error):not(.progress) .time, | |
719 #all-filter-lists li.progress .progress, | |
720 #all-filter-lists li.error .error | |
Thomas Greiner
2016/02/04 15:28:17
`.error` and `.progress` are not very descriptive
saroyanm
2016/02/04 17:50:07
Done.
| |
721 { | |
722 display: inline; | |
Thomas Greiner
2016/02/04 15:28:17
Detail: You can simplify this a bit by merging the
saroyanm
2016/02/04 17:50:07
Done.
| |
723 } | 717 } |
724 | 718 |
725 .date::before | 719 .date::before |
726 { | 720 { |
727 content: ""; | 721 content: ""; |
728 -webkit-margin-end: 6px; | 722 -webkit-margin-end: 6px; |
729 -moz-margin-end: 6px; | 723 -moz-margin-end: 6px; |
730 height: 12px; | 724 height: 12px; |
731 width: 12px; | 725 width: 12px; |
732 background-position: -7px -49px; | 726 background-position: -7px -49px; |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1318 #other-language .button-add::before | 1312 #other-language .button-add::before |
1319 { | 1313 { |
1320 display: none; | 1314 display: none; |
1321 } | 1315 } |
1322 | 1316 |
1323 #other-language .display | 1317 #other-language .display |
1324 { | 1318 { |
1325 -webkit-margin-start: 10px; | 1319 -webkit-margin-start: 10px; |
1326 -moz-margin-start: 10px; | 1320 -moz-margin-start: 10px; |
1327 } | 1321 } |
LEFT | RIGHT |