diff options
author | Horst3180 | 2015-09-23 14:34:50 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-23 14:34:50 +0200 |
commit | cce1e324d96c542fb3acfca566b9977c60e4e0a5 (patch) | |
tree | d89c8f3f5c98c574fa74f0a1e050cd02db2a05e1 /arc-firefox-theme/chrome/browser/browser.css | |
parent | 4aaed84e02beae48a359a53d4f3b037148d56fae (diff) | |
download | solarc-firefox-theme-cce1e324d96c542fb3acfca566b9977c60e4e0a5.tar.gz solarc-firefox-theme-cce1e324d96c542fb3acfca566b9977c60e4e0a5.tar.xz solarc-firefox-theme-cce1e324d96c542fb3acfca566b9977c60e4e0a5.zip |
fix close icon on active tab
Diffstat (limited to 'arc-firefox-theme/chrome/browser/browser.css')
-rw-r--r-- | arc-firefox-theme/chrome/browser/browser.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arc-firefox-theme/chrome/browser/browser.css b/arc-firefox-theme/chrome/browser/browser.css index f163b8e..b68451a 100644 --- a/arc-firefox-theme/chrome/browser/browser.css +++ b/arc-firefox-theme/chrome/browser/browser.css @@ -2576,17 +2576,17 @@ lwtHeader;*/ /* Tab close button */ .close-icon { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close.svg") !important; } .close-icon:hover { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-hover.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-hover.svg") !important; } .close-icon:active:hover { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-active.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-active.svg") !important; } .tabbrowser-tab:not([selected="true"]) .close-icon { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-inactive.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-inactive.svg") !important; } .tabbrowser-tab:not([selected="true"]) .close-icon:hover { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-hover.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-hover.svg") !important; } .tabbrowser-tab:not([selected="true"]) .close-icon:active { - background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-active.svg"); } + background-image: url("chrome://browser/skin/custom_images/light/tabs/tab-close-active.svg") !important; } /* Tabstrip new tab button */ .tabs-newtab-button, |