Left: | ||
Right: |
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 26 matching lines...) Expand all Loading... | |
37 #header-view-toolbar > #abp-toolbarbutton[abpstate="disabled"], | 37 #header-view-toolbar > #abp-toolbarbutton[abpstate="disabled"], |
38 #abp-status[abpstate="disabled"], | 38 #abp-status[abpstate="disabled"], |
39 toolbar[iconsize="small"] #abp-toolbarbutton[abpstate="whitelisted"], | 39 toolbar[iconsize="small"] #abp-toolbarbutton[abpstate="whitelisted"], |
40 #PersonalToolbar #abp-toolbarbutton[abpstate="whitelisted"], | 40 #PersonalToolbar #abp-toolbarbutton[abpstate="whitelisted"], |
41 #header-view-toolbar > #abp-toolbarbutton[abpstate="whitelisted"], | 41 #header-view-toolbar > #abp-toolbarbutton[abpstate="whitelisted"], |
42 #abp-status[abpstate="whitelisted"] | 42 #abp-status[abpstate="whitelisted"] |
43 { | 43 { |
44 -moz-image-region: rect(16px, 16px, 32px, 0px); | 44 -moz-image-region: rect(16px, 16px, 32px, 0px); |
45 } | 45 } |
46 | 46 |
47 toolbar[iconsize="small"] #abp-toolbarbutton .toolbarbutton-icon, | |
saroyanm
2016/09/19 10:40:09
According to the Ticket description, this affects
Wladimir Palant
2016/09/19 11:08:40
On regular screens the image size happens to match
saroyanm
2016/09/19 11:57:22
Acknowledged.
| |
48 #PersonalToolbar #abp-toolbarbutton .toolbarbutton-icon, | |
49 #header-view-toolbar > #abp-toolbarbutton .toolbarbutton-icon | |
50 { | |
51 width: 16px; | |
52 height: 16px; | |
53 } | |
54 | |
47 @media screen and (min-resolution: 1.5dppx) | 55 @media screen and (min-resolution: 1.5dppx) |
48 { | 56 { |
49 toolbar[iconsize="small"] #abp-toolbarbutton, | 57 toolbar[iconsize="small"] #abp-toolbarbutton, |
50 #PersonalToolbar #abp-toolbarbutton, | 58 #PersonalToolbar #abp-toolbarbutton, |
51 #header-view-toolbar > #abp-toolbarbutton, | 59 #header-view-toolbar > #abp-toolbarbutton, |
52 #abp-status | 60 #abp-status |
53 { | 61 { |
54 list-style-image: url("abp-status.png"); | 62 list-style-image: url("abp-status.png"); |
55 -moz-image-region: rect(0px, 24px, 24px, 0px); | 63 -moz-image-region: rect(0px, 24px, 24px, 0px); |
56 } | 64 } |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
285 #abp-notification.abp-closing #abp-notification-content, | 293 #abp-notification.abp-closing #abp-notification-content, |
286 #abp-notification:not(.abp-closing) #abp-notification-close-content | 294 #abp-notification:not(.abp-closing) #abp-notification-close-content |
287 { | 295 { |
288 display: none; | 296 display: none; |
289 } | 297 } |
290 | 298 |
291 #abp-notification-close-content toolbarbutton label | 299 #abp-notification-close-content toolbarbutton label |
292 { | 300 { |
293 text-align: left; | 301 text-align: left; |
294 } | 302 } |
OLD | NEW |