diff options
author | Horst3180 | 2016-03-27 09:35:55 +0200 |
---|---|---|
committer | Horst3180 | 2016-03-27 19:35:09 +0200 |
commit | 590a02e1b024d8faddb64f09c1a3c55788e47d5c (patch) | |
tree | 8445520ce8a4dfe15c2ab0eda640c6b655d87230 /common/gtk-3.0/3.20/sass | |
parent | 966778df08c2ee94dfdf55c9281791b0b2121497 (diff) | |
download | solarc-theme-590a02e1b024d8faddb64f09c1a3c55788e47d5c.tar.gz solarc-theme-590a02e1b024d8faddb64f09c1a3c55788e47d5c.tar.xz solarc-theme-590a02e1b024d8faddb64f09c1a3c55788e47d5c.zip |
fix eject button in placesview
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_transparent_widgets.scss | 20 |
1 files changed, 10 insertions, 10 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 0a39e43..e6833fc 100644 --- a/common/gtk-3.0/3.20/sass/_transparent_widgets.scss +++ b/common/gtk-3.0/3.20/sass/_transparent_widgets.scss @@ -22,7 +22,7 @@ filechooser, background-color: $dark_sidebar_bg; - row { + row.sidebar-row { border: none; color: $dark_sidebar_fg; @@ -42,6 +42,15 @@ filechooser, .sidebar-icon { color: inherit; } } + &:not(:selected) button.sidebar-button { + color: $dark_sidebar_fg; + + &:hover { @include button(osd-hover); } + &:active { @include button(active); } + + &:not(:hover):not(:active) > image { opacity: 0.5 }; + } + &.sidebar-new-bookmark-row { color: $selected_bg_color; @@ -64,15 +73,6 @@ filechooser, } &.maximized placessidebar.sidebar { background-color: opacify($dark_sidebar_bg, 1); } - - row:not(:selected) button.sidebar-button { - color: $dark_sidebar_fg; - - &:hover { @include button(osd-hover); } - &:active { @include button(active); } - - &:not(:hover):not(:active) > image { opacity: 0.5 }; - } } |