diff options
author | Horst3180 | 2016-04-20 14:25:06 +0200 |
---|---|---|
committer | Horst3180 | 2016-04-20 14:25:06 +0200 |
commit | 36155980a5e61a667949c914f1010ec7726176b2 (patch) | |
tree | f3903ad16b280819f359116c03b500d017a785d7 /common/gtk-3.0/3.20/sass | |
parent | 20c6c0a5597038bd1aab950eaaa75bb6a9436593 (diff) | |
download | solarc-theme-36155980a5e61a667949c914f1010ec7726176b2.tar.gz solarc-theme-36155980a5e61a667949c914f1010ec7726176b2.tar.xz solarc-theme-36155980a5e61a667949c914f1010ec7726176b2.zip |
nautilus: don't hide pane separator in dark variant (fix #459)
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_transparent_widgets.scss | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/common/gtk-3.0/3.20/sass/_transparent_widgets.scss b/common/gtk-3.0/3.20/sass/_transparent_widgets.scss index 6f36439..27611ce 100644 --- a/common/gtk-3.0/3.20/sass/_transparent_widgets.scss +++ b/common/gtk-3.0/3.20/sass/_transparent_widgets.scss @@ -5,8 +5,10 @@ paned > separator { background-image: linear-gradient(to top, $dark_sidebar_border); - &:dir(ltr) { margin-left: -1px; } - &:dir(rtl) { margin-right: -1px; } + @if $variant=='light' { + &:dir(ltr) { margin-left: -1px; } + &:dir(rtl) { margin-right: -1px; } + } } } @@ -75,7 +77,6 @@ filechooser, &.maximized placessidebar.sidebar { background-color: opacify($dark_sidebar_bg, 1); } } - .nemo-window { .sidebar { color: $dark_sidebar_fg; @@ -89,6 +90,12 @@ filechooser, background-color: $selected_bg_color; color: $selected_fg_color; } + + &.expander { + color: mix($dark_sidebar_fg, $dark_sidebar_bg, 50%); + + &:hover { color: $dark_sidebar_fg; } + } } separator { background-color: transparent; } |