OLD | NEW |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 font-style: normal; | 45 font-style: normal; |
46 } | 46 } |
47 | 47 |
48 body | 48 body |
49 { | 49 { |
50 background-color: #F5F5F5; | 50 background-color: #F5F5F5; |
51 display: flex; | 51 display: flex; |
52 margin: 20px 10px; | 52 margin: 20px 10px; |
53 font-family: "Source Sans Pro", sans-serif; | 53 font-family: "Source Sans Pro", sans-serif; |
54 font-size: 14px; | 54 font-size: 14px; |
| 55 color: #494949; |
55 } | 56 } |
56 | 57 |
57 h1 | 58 h1 |
58 { | 59 { |
59 font-size: 24px; | 60 font-size: 24px; |
60 line-height: 1em; | 61 line-height: 1em; |
61 font-weight: 300; | 62 font-weight: 300; |
62 } | 63 } |
63 | 64 |
64 h2 | 65 h2 |
65 { | 66 { |
66 font-size: 16px; | 67 font-size: 16px; |
67 font-weight: 600; | 68 font-weight: 600; |
68 } | 69 } |
69 | 70 |
70 p | 71 p |
71 { | 72 { |
72 font-weight: 300; | 73 font-weight: 300; |
73 } | 74 } |
74 | 75 |
75 hr | 76 hr |
76 { | 77 { |
77 background-color: #CDCDCD; | 78 background-color: #CDCDCD; |
78 border: 0px; | 79 border: 0px; |
79 height: 1px; | 80 height: 1px; |
80 margin: 0px; | 81 margin: 0px; |
81 } | 82 } |
82 | 83 |
| 84 [aria-hidden="true"] |
| 85 { |
| 86 display: none !important; |
| 87 } |
| 88 |
83 input[type="search"]::-webkit-search-cancel-button | 89 input[type="search"]::-webkit-search-cancel-button |
84 { | 90 { |
85 display: none; | 91 display: none; |
86 } | 92 } |
87 | 93 |
88 input[type="text"], input[type="search"] | 94 input[type="text"], input[type="search"] |
89 { | 95 { |
90 -webkit-box-sizing: border-box; | 96 -webkit-box-sizing: border-box; |
91 -moz-box-sizing: border-box; | 97 -moz-box-sizing: border-box; |
92 box-sizing: border-box; | 98 box-sizing: border-box; |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 background-color: transparent; | 605 background-color: transparent; |
600 border: 0px; | 606 border: 0px; |
601 color: #3A7BA6; | 607 color: #3A7BA6; |
602 cursor: pointer; | 608 cursor: pointer; |
603 } | 609 } |
604 | 610 |
605 /* | 611 /* |
606 Advanced tab content | 612 Advanced tab content |
607 */ | 613 */ |
608 | 614 |
| 615 #tweaks .table li |
| 616 { |
| 617 padding-bottom: 0px; |
| 618 } |
| 619 |
609 #filter-lists > div | 620 #filter-lists > div |
610 { | 621 { |
611 display: none; | 622 display: none; |
612 } | 623 } |
613 | 624 |
614 body[data-tab="advanced-allFilterLists"] #all-filter-lists, | 625 body[data-tab="advanced-allFilterLists"] #all-filter-lists, |
615 body[data-tab="advanced-customFilters"] #custom-filters | 626 body[data-tab="advanced-customFilters"] #custom-filters |
616 { | 627 { |
617 display: block; | 628 display: block; |
618 } | 629 } |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 height: 10px; | 876 height: 10px; |
866 -webkit-margin-start: 6px; | 877 -webkit-margin-start: 6px; |
867 -moz-margin-start: 6px; | 878 -moz-margin-start: 6px; |
868 width: 10px; | 879 width: 10px; |
869 } | 880 } |
870 | 881 |
871 /* | 882 /* |
872 Tooltips | 883 Tooltips |
873 */ | 884 */ |
874 | 885 |
875 .tooltip, #block-element-explanation a | 886 .tooltip |
876 { | 887 { |
877 border-bottom: dashed 1px; | 888 border-bottom: dashed 1px; |
878 color: #3A7BA6; | 889 color: #3A7BA6; |
879 cursor: default; | 890 cursor: default; |
880 font-size: 12px; | 891 font-size: 12px; |
881 height: 15px; | 892 height: 15px; |
882 line-height: 19px; | 893 line-height: 19px; |
883 margin: 0px 4px; | 894 margin: 0px 4px; |
884 position: relative; | 895 position: relative; |
885 text-decoration: none; | 896 text-decoration: none; |
(...skipping 12 matching lines...) Expand all Loading... |
898 white-space: nowrap; | 909 white-space: nowrap; |
899 color: #FFF; | 910 color: #FFF; |
900 } | 911 } |
901 | 912 |
902 #content-advanced .tooltip | 913 #content-advanced .tooltip |
903 { | 914 { |
904 -moz-margin-start: 8px; | 915 -moz-margin-start: 8px; |
905 -webkit-margin-start: 8px; | 916 -webkit-margin-start: 8px; |
906 } | 917 } |
907 | 918 |
908 #block-element-explanation a | |
909 { | |
910 color: black; | |
911 border-bottom-color: #3A7BA6; | |
912 font-weight: 600; | |
913 -moz-padding-start: 0px; | |
914 -webkit-padding-start: 0px; | |
915 } | |
916 | |
917 div[role="tooltip"] | 919 div[role="tooltip"] |
918 { | 920 { |
919 background-color: rgba(45, 45, 45, 0.95); | 921 background-color: rgba(45, 45, 45, 0.95); |
920 border-radius: 3px; | 922 border-radius: 3px; |
921 color: #FFF; | 923 color: #FFF; |
922 font-size: 14px; | 924 font-size: 14px; |
923 font-weight: 400; | 925 font-weight: 400; |
924 left: -20px; | 926 left: -20px; |
925 line-height: 18px; | 927 line-height: 18px; |
926 margin-top: 14px; | 928 margin-top: 14px; |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 #other-language .button-add::before | 1314 #other-language .button-add::before |
1313 { | 1315 { |
1314 display: none; | 1316 display: none; |
1315 } | 1317 } |
1316 | 1318 |
1317 #other-language .display | 1319 #other-language .display |
1318 { | 1320 { |
1319 -webkit-margin-start: 10px; | 1321 -webkit-margin-start: 10px; |
1320 -moz-margin-start: 10px; | 1322 -moz-margin-start: 10px; |
1321 } | 1323 } |
OLD | NEW |