Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
60 -moz-image-region: rect(0px, 24px, 24px, 0px); | 60 -moz-image-region: rect(0px, 24px, 24px, 0px); |
61 } | 61 } |
62 #abp-toolbarbutton[abpstate="disabled"], | 62 #abp-toolbarbutton[abpstate="disabled"], |
63 #abp-toolbarbutton[abpstate="whitelisted"], | 63 #abp-toolbarbutton[abpstate="whitelisted"], |
64 #abp-site-info[abpaction="enable"], | 64 #abp-site-info[abpaction="enable"], |
65 #abp-site-info[abpaction="enable_site"] { | 65 #abp-site-info[abpaction="enable_site"] { |
66 -moz-image-region: rect(24px, 24px, 48px, 0px); | 66 -moz-image-region: rect(24px, 24px, 48px, 0px); |
67 } | 67 } |
68 | 68 |
69 /* Hack: force the label to be displayed below icon for type="menu" */ | 69 /* Hack: force the label to be displayed below icon for type="menu" */ |
70 #abp-toolbarbutton[type="menu"] | 70 #abp-toolbarbutton[type="menu"]:not([cui-areatype="menu-panel"]) |
71 { | 71 { |
72 -moz-box-orient: horizontal; | 72 -moz-box-orient: horizontal; |
73 } | 73 } |
74 toolbar[mode="full"] #abp-toolbarbutton[type="menu"] | 74 toolbar[mode="full"] #abp-toolbarbutton[type="menu"] |
75 { | 75 { |
76 -moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#menu-ver tical"); | 76 -moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#menu-ver tical"); |
77 } | 77 } |
78 | 78 |
79 /* Thunderbird-specific toolbar icon styles */ | 79 /* Thunderbird-specific toolbar icon styles */ |
80 #header-view-toolbar > #abp-toolbarbutton | 80 #header-view-toolbar > #abp-toolbarbutton |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
162 margin-right: 40px; | 162 margin-right: 40px; |
163 } | 163 } |
164 | 164 |
165 .abp-contributebutton-close | 165 .abp-contributebutton-close |
166 { | 166 { |
167 border-style: none !important; | 167 border-style: none !important; |
168 -moz-user-focus: normal; | 168 -moz-user-focus: normal; |
169 list-style-image: url("close.png"); | 169 list-style-image: url("close.png"); |
170 -moz-appearance: none; | 170 -moz-appearance: none; |
171 -moz-image-region: rect(0px, 14px, 14px, 0px); | 171 -moz-image-region: rect(0px, 14px, 14px, 0px); |
172 min-width: 0px !important; | |
Felix Dahlke
2013/11/20 14:15:55
This seems pretty peculiar, worth a comment IMO.
Wladimir Palant
2013/11/20 14:36:33
Nothing special actually, the Australis theme defi
Felix Dahlke
2013/11/20 14:42:57
I meant a comment in the source, to be clear :) Bu
| |
173 min-height: 0px !important; | |
174 width: auto !important; | |
175 height: auto !important; | |
172 } | 176 } |
173 | 177 |
174 .abp-contributebutton-close:hover | 178 .abp-contributebutton-close:hover |
175 { | 179 { |
176 -moz-image-region: rect(0px, 28px, 14px, 14px); | 180 -moz-image-region: rect(0px, 28px, 14px, 14px); |
177 } | 181 } |
178 | 182 |
179 #abp-notification html|a | 183 #abp-notification html|a |
180 { | 184 { |
181 color: #0000f0; | 185 color: #0000f0; |
182 } | 186 } |
183 | 187 |
184 #abp-notification html|a:hover | 188 #abp-notification html|a:hover |
185 { | 189 { |
186 text-decoration: underline; | 190 text-decoration: underline; |
187 } | 191 } |
OLD | NEW |