diff options
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 }; - } } |