| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } | 100 } |
| 101 | 101 |
| 102 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="disabled"], | 102 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="disabled"], |
| 103 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="disabled"], | 103 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="disabled"], |
| 104 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="whitelisted"], | 104 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="whitelisted"], |
| 105 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="whitelisted"] | 105 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="whitelisted"] |
| 106 { | 106 { |
| 107 -moz-image-region: rect(32px, 32px, 64px, 0px); | 107 -moz-image-region: rect(32px, 32px, 64px, 0px); |
| 108 } | 108 } |
| 109 | 109 |
| 110 @media screen and (min-resolution: 1.5dppx) |
| 111 { |
| 112 #abp-toolbarbutton[cui-areatype="menu-panel"], |
| 113 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton |
| 114 { |
| 115 list-style-image: url("abp-status-48.png"); |
| 116 -moz-image-region: rect(0px, 48px, 48px, 0px); |
| 117 } |
| 118 |
| 119 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="disabled"], |
| 120 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="disabled"], |
| 121 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="whitelisted"], |
| 122 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="whitelisted
"] |
| 123 { |
| 124 -moz-image-region: rect(48px, 48px, 96px, 0px); |
| 125 } |
| 126 } |
| 127 |
| 128 @media screen and (min-resolution: 2dppx) |
| 129 { |
| 130 #abp-toolbarbutton[cui-areatype="menu-panel"], |
| 131 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton |
| 132 { |
| 133 list-style-image: url("abp-status-64.png"); |
| 134 -moz-image-region: rect(0px, 64px, 64px, 0px); |
| 135 } |
| 136 |
| 137 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="disabled"], |
| 138 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="disabled"], |
| 139 #abp-toolbarbutton[cui-areatype="menu-panel"][abpstate="whitelisted"], |
| 140 toolbarpaletteitem[place="palette"] > #abp-toolbarbutton[abpstate="whitelisted
"] |
| 141 { |
| 142 -moz-image-region: rect(64px, 64px, 128px, 0px); |
| 143 } |
| 144 } |
| 145 |
| 110 #abp-toolbar-popup { | 146 #abp-toolbar-popup { |
| 111 list-style-image: none; | 147 list-style-image: none; |
| 112 -moz-image-region: rect(0px, 0px, 0px, 0px); | 148 -moz-image-region: rect(0px, 0px, 0px, 0px); |
| 113 } | 149 } |
| 114 | 150 |
| 115 toolbox[vertical="true"] toolbar #abp-toolbarbutton dropmarker { | 151 toolbox[vertical="true"] toolbar #abp-toolbarbutton dropmarker { |
| 116 display: none !important; | 152 display: none !important; |
| 117 } | 153 } |
| 118 | 154 |
| 119 menuitem[default="true"] { | 155 menuitem[default="true"] { |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 #abp-notification.abp-closing #abp-notification-content, | 321 #abp-notification.abp-closing #abp-notification-content, |
| 286 #abp-notification:not(.abp-closing) #abp-notification-close-content | 322 #abp-notification:not(.abp-closing) #abp-notification-close-content |
| 287 { | 323 { |
| 288 display: none; | 324 display: none; |
| 289 } | 325 } |
| 290 | 326 |
| 291 #abp-notification-close-content toolbarbutton label | 327 #abp-notification-close-content toolbarbutton label |
| 292 { | 328 { |
| 293 text-align: left; | 329 text-align: left; |
| 294 } | 330 } |
| OLD | NEW |