| 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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 |
| 902 { | 902 { |
| 903 display: none; | 903 display: none; |
| 904 } | 904 } |
| 905 | 905 |
| 906 #social ul | 906 #social ul |
|
ire
2017/08/24 09:17:47
Should there be the default padding-left on this e
saroyanm
2017/08/24 13:22:28
I think no, but this will be fixed with the sectio
ire
2017/08/25 08:52:49
Acknowledged.
| |
| 907 { | 907 { |
| 908 list-style: none; | 908 list-style: none; |
| 909 } | 909 } |
| 910 | 910 |
| 911 #social ul li | 911 #social ul li |
|
ire
2017/08/24 09:17:47
The spacing between each list item is off/inexiste
saroyanm
2017/08/24 13:22:28
Same here, I'm planing to touch this styles when s
ire
2017/08/25 08:52:50
Acknowledged.
| |
| 912 { | 912 { |
| 913 display: inline-block; | 913 display: inline-block; |
| 914 } | 914 } |
| 915 | 915 |
| 916 #social ul li a | 916 #social ul li a |
|
ire
2017/08/24 09:17:47
The text isn't centered below the icon. Adding `te
ire
2017/08/24 09:17:48
I'm not sure that the styling of these links will
saroyanm
2017/08/24 13:22:28
I don't have strong opinion, as this styles are mi
saroyanm
2017/08/24 13:22:28
I'll update.
ire
2017/08/25 08:52:50
Acknowledged.
| |
| 917 { | 917 { |
| 918 display: block; | 918 display: block; |
| 919 text-align: center; | |
| 919 } | 920 } |
| 920 | 921 |
| 921 #social ul li a::before | 922 #social ul li a::before |
| 922 { | 923 { |
| 923 display: block; | 924 display: block; |
| 924 margin: 0em auto; | 925 margin: 0em auto; |
| 925 width: 50px; | 926 width: 2.5rem; |
|
ire
2017/08/24 09:17:47
Should this size be an em size instead? Feels like
saroyanm
2017/08/24 13:22:28
Yes, it should I'll update this.
saroyanm
2017/08/24 18:19:42
done.
Root item font-size = 20px;
ire
2017/08/25 08:52:50
Acknowledged.
| |
| 926 height: 50px; | 927 height: 2.5rem; |
| 927 content: ""; | 928 content: ""; |
| 928 background-color: #099DD1; | 929 background-color: #099DD1; |
| 929 } | 930 } |
| 930 | 931 |
| 931 #twitter::before | 932 #twitter::before |
| 932 { | 933 { |
| 933 -webkit-mask: url(social/twitter.svg); | 934 -webkit-mask: url("social/twitter.svg"); |
| 934 mask: url(social/twitter.svg); | 935 mask: url("social/twitter.svg"); |
|
ire
2017/08/24 09:17:47
Would using a plain background-image (or better ye
ire
2017/08/24 09:17:47
NIT: quotes (") around the url
saroyanm
2017/08/24 13:22:28
Yes, I did it this way as the images are missing c
saroyanm
2017/08/24 13:22:28
Well spotted I'll change.
saroyanm
2017/08/24 18:19:42
Done.
ire
2017/08/25 08:52:50
Acknowledged.
| |
| 935 } | 936 } |
| 936 | 937 |
| 937 #facebook::before | 938 #facebook::before |
| 938 { | 939 { |
| 939 -webkit-mask: url(social/facebook.svg); | 940 -webkit-mask: url("social/facebook.svg"); |
| 940 mask: url(social/facebook.svg); | 941 mask: url("social/facebook.svg"); |
| 941 } | 942 } |
| 942 | 943 |
| 943 #google-plus::before | 944 #google-plus::before |
| 944 { | 945 { |
| 945 -webkit-mask: url(social/googleplus.svg); | 946 -webkit-mask: url("social/googleplus.svg"); |
| 946 mask: url(social/googleplus.svg); | 947 mask: url("social/googleplus.svg"); |
| 947 } | 948 } |
| 948 | 949 |
| 949 /* | 950 /* |
| 950 Dialog | 951 Dialog |
| 951 */ | 952 */ |
| 952 | 953 |
| 953 #dialog-background | 954 #dialog-background |
| 954 { | 955 { |
| 955 display: none; | 956 display: none; |
| 956 position: fixed; | 957 position: fixed; |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1086 body:not([data-dialog="language-change"]) #dialog-title-language-change, | 1087 body:not([data-dialog="language-change"]) #dialog-title-language-change, |
| 1087 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, |
| 1088 body:not([data-dialog="language-add"]) #dialog-body button.add, | 1089 body:not([data-dialog="language-add"]) #dialog-body button.add, |
| 1089 body:not([data-dialog="language-change"]) #dialog-body button.change, | 1090 body:not([data-dialog="language-change"]) #dialog-body button.change, |
| 1090 body:not([data-dialog="predefined"]) #dialog-title-predefined, | 1091 body:not([data-dialog="predefined"]) #dialog-title-predefined, |
| 1091 body:not([data-dialog="predefined"]) #dialog-content-predefined, | 1092 body:not([data-dialog="predefined"]) #dialog-content-predefined, |
| 1092 body:not([data-dialog]) #dialog | 1093 body:not([data-dialog]) #dialog |
| 1093 { | 1094 { |
| 1094 display: none; | 1095 display: none; |
| 1095 } | 1096 } |
| LEFT | RIGHT |