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-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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
891 div[role="tooltip"] .notes p | 891 div[role="tooltip"] .notes p |
892 { | 892 { |
893 font-weight: 300; | 893 font-weight: 300; |
894 } | 894 } |
895 | 895 |
896 /* | 896 /* |
897 Help tab content | 897 Help tab content |
898 */ | 898 */ |
899 | 899 |
900 html:not([lang="zh"]) #social-chinese, | 900 html:not([lang="zh"]) #social-chinese, |
901 html[lang="zh"] #social-general | 901 html[lang="zh"] #social-general |
ire
2017/08/25 08:52:50
NIT: We don't need the `html` part of this selecto
saroyanm
2017/08/25 10:54:37
I don't have strong opinion, but I think it makes
ire
2017/08/25 11:55:54
Okay, leave it as it is then.
| |
902 { | 902 { |
903 display: none; | 903 display: none; |
904 } | 904 } |
905 | 905 |
906 #social ul | 906 #social ul |
907 { | 907 { |
908 list-style: none; | 908 list-style: none; |
909 } | 909 } |
910 | 910 |
911 #social ul li | 911 #social ul li |
912 { | 912 { |
913 display: inline-block; | 913 display: inline-block; |
914 } | 914 } |
915 | 915 |
916 #social ul li a | 916 #social ul li a |
917 { | 917 { |
918 display: block; | 918 display: block; |
919 text-align: center | 919 text-align: center; |
ire
2017/08/25 08:52:50
Missing semi-colon
saroyanm
2017/08/25 10:54:37
Done.
| |
920 } | 920 } |
921 | 921 |
922 #social ul li a::before | 922 #social ul li a::before |
923 { | 923 { |
924 display: block; | 924 display: block; |
925 margin: 0em auto; | 925 margin: 0em auto; |
926 width: 2.5rem; | 926 width: 2.5rem; |
927 height: 2.5rem; | 927 height: 2.5rem; |
928 content: ""; | 928 content: ""; |
929 background-color: #099DD1; | 929 background-color: #099DD1; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1087 body:not([data-dialog="language-change"]) #dialog-title-language-change, | 1087 body:not([data-dialog="language-change"]) #dialog-title-language-change, |
1088 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia log-content-language-add, | 1088 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia log-content-language-add, |
1089 body:not([data-dialog="language-add"]) #dialog-body button.add, | 1089 body:not([data-dialog="language-add"]) #dialog-body button.add, |
1090 body:not([data-dialog="language-change"]) #dialog-body button.change, | 1090 body:not([data-dialog="language-change"]) #dialog-body button.change, |
1091 body:not([data-dialog="predefined"]) #dialog-title-predefined, | 1091 body:not([data-dialog="predefined"]) #dialog-title-predefined, |
1092 body:not([data-dialog="predefined"]) #dialog-content-predefined, | 1092 body:not([data-dialog="predefined"]) #dialog-content-predefined, |
1093 body:not([data-dialog]) #dialog | 1093 body:not([data-dialog]) #dialog |
1094 { | 1094 { |
1095 display: none; | 1095 display: none; |
1096 } | 1096 } |
LEFT | RIGHT |