| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This Source Code is subject to the terms of the Mozilla Public License | 2 * This Source Code is subject to the terms of the Mozilla Public License |
| 3 * version 2.0 (the "License"). You can obtain a copy of the License at | 3 * version 2.0 (the "License"). You can obtain a copy of the License at |
| 4 * http://mozilla.org/MPL/2.0/. | 4 * http://mozilla.org/MPL/2.0/. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | 7 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 8 | 8 |
| 9 #ehh-inspector-toolbarbutton | 9 #ehh-inspector-toolbarbutton |
| 10 { | 10 { |
| 11 list-style-image: url("chrome://adblockplus/skin/abp-status-16.png"); | 11 list-style-image: url("chrome://adblockplus/skin/abp-status-16.png"); |
| 12 -moz-image-region: rect(0px, 16px, 16px, 0px); | 12 -moz-image-region: rect(0px, 16px, 16px, 0px); |
| 13 } | 13 } |
| 14 | 14 |
| 15 @media screen and (min-resolution: 1.5dppx) |
| 16 { |
| 17 #ehh-inspector-toolbarbutton |
| 18 { |
| 19 list-style-image: url("chrome://adblockplus/skin/abp-status.png"); |
| 20 -moz-image-region: rect(0px, 24px, 24px, 0px); |
| 21 } |
| 22 } |
| 23 |
| 24 @media screen and (min-resolution: 2dppx) |
| 25 { |
| 26 #ehh-inspector-toolbarbutton |
| 27 { |
| 28 list-style-image: url("chrome://adblockplus/skin/abp-status-32.png"); |
| 29 -moz-image-region: rect(0px, 32px, 32px, 0px); |
| 30 } |
| 31 } |
| 32 |
| 15 #ehh-inspector-toolbarbutton > image | 33 #ehh-inspector-toolbarbutton > image |
| 16 { | 34 { |
| 17 filter: none; | 35 filter: none; |
| 18 } | 36 } |
| OLD | NEW |