diff options
author | Horst3180 | 2016-05-13 23:30:56 +0200 |
---|---|---|
committer | Horst3180 | 2016-05-13 23:30:56 +0200 |
commit | e35ee3d85ba814eba79bc0527e535f053f69206b (patch) | |
tree | 779da055542feca4555b90e9042e6aacc10e033e /arc-firefox-theme/chrome/browser/sass/extensions | |
parent | d959602a2ef4aa7473947dd883845f693bd5925b (diff) | |
download | solarc-firefox-theme-e35ee3d85ba814eba79bc0527e535f053f69206b.tar.gz solarc-firefox-theme-e35ee3d85ba814eba79bc0527e535f053f69206b.tar.xz solarc-firefox-theme-e35ee3d85ba814eba79bc0527e535f053f69206b.zip |
fix loop and pocket icons
Diffstat (limited to 'arc-firefox-theme/chrome/browser/sass/extensions')
-rw-r--r-- | arc-firefox-theme/chrome/browser/sass/extensions/_loop.scss | 11 | ||||
-rw-r--r-- | arc-firefox-theme/chrome/browser/sass/extensions/_pocket.scss | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/arc-firefox-theme/chrome/browser/sass/extensions/_loop.scss b/arc-firefox-theme/chrome/browser/sass/extensions/_loop.scss new file mode 100644 index 0000000..f6ca44a --- /dev/null +++ b/arc-firefox-theme/chrome/browser/sass/extensions/_loop.scss @@ -0,0 +1,11 @@ +#loop-button, +toolbar[brighttext] #loop-button { + #nav-bar & { list-style-image: url("chrome://browser/skin/custom_images/#{$asset_path}/loop-toolbar-icons.svg") !important; } + + #TabsToolbar & { list-style-image: url("chrome://browser/skin/custom_images/#{$darker_asset_path_2}/loop-tabbar-icons.svg") !important; } + + #nav-bar &:not([disabled=true]):-moz-any([open],[checked],:hover:active), + #TabsToolbar &:not([disabled=true]):-moz-any([open],[checked],:hover:active) { + list-style-image: url("chrome://browser/skin/custom_images/loop-toolbar-icons-active.svg") !important; + } +} diff --git a/arc-firefox-theme/chrome/browser/sass/extensions/_pocket.scss b/arc-firefox-theme/chrome/browser/sass/extensions/_pocket.scss new file mode 100644 index 0000000..e50bd7a --- /dev/null +++ b/arc-firefox-theme/chrome/browser/sass/extensions/_pocket.scss @@ -0,0 +1,11 @@ +#pocket-button, +toolbar[brighttext] #pocket-button { + #nav-bar & { list-style-image: url("chrome://browser/skin/custom_images/#{$asset_path}/pocket-toolbar-icons.svg") !important; } + + #TabsToolbar & { list-style-image: url("chrome://browser/skin/custom_images/#{$darker_asset_path_2}/pocket-tabbar-icons.svg") !important; } + + #nav-bar &:not([disabled=true]):-moz-any([open],[checked],:hover:active), + #TabsToolbar &:not([disabled=true]):-moz-any([open],[checked],:hover:active) { + list-style-image: url("chrome://browser/skin/custom_images/pocket-toolbar-icons-active.svg") !important; + } +} |