diff options
author | Horst3180 | 2016-06-20 20:48:29 +0200 |
---|---|---|
committer | Horst3180 | 2016-06-20 20:48:29 +0200 |
commit | 89728b5b472faa684e60c6fbe47d6c2128331e63 (patch) | |
tree | cb5e9aefe8d0435028a651abd7ba3db96429e614 /common/gtk-3.0/3.18/sass | |
parent | d24a7b5b4eb25e1a094bdf4e125332cfb8e2c8c1 (diff) | |
download | solarc-theme-89728b5b472faa684e60c6fbe47d6c2128331e63.tar.gz solarc-theme-89728b5b472faa684e60c6fbe47d6c2128331e63.tar.xz solarc-theme-89728b5b472faa684e60c6fbe47d6c2128331e63.zip |
3.18: fix sidebar-button
Diffstat (limited to 'common/gtk-3.0/3.18/sass')
-rw-r--r-- | common/gtk-3.0/3.18/sass/_transparent_widgets.scss | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/common/gtk-3.0/3.18/sass/_transparent_widgets.scss b/common/gtk-3.0/3.18/sass/_transparent_widgets.scss index d3c049c..aeae067 100644 --- a/common/gtk-3.0/3.18/sass/_transparent_widgets.scss +++ b/common/gtk-3.0/3.18/sass/_transparent_widgets.scss @@ -47,21 +47,24 @@ NautilusWindow { } } + .sidebar-button.button { + color: $dark_sidebar_fg; + + &:hover { @include button(osd-hover); } + &:active { + background-clip: padding-box; + @include button(osd-active); + } + + &:not(:hover):not(:active) > GtkImage { opacity: 0.5 }; + } + .separator { color: transparent; } .scrollbar { @extend %dark_sidebar_scrollbar } } &.maximized GtkPlacesSidebar.sidebar { background-color: opacify($dark_sidebar_bg, 1); } - - .sidebar-button.button { - color: $dark_sidebar_fg; - - &:hover { @include button(osd-hover); } - &:active { @include button(osd-active); } - - &:not(:hover):not(:active) > GtkImage { opacity: 0.5 }; - } } |