diff options
Diffstat (limited to 'common/gtk-3.0/3.16/_transparent_widgets.scss')
-rw-r--r-- | common/gtk-3.0/3.16/_transparent_widgets.scss | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/common/gtk-3.0/3.16/_transparent_widgets.scss b/common/gtk-3.0/3.16/_transparent_widgets.scss index 1ca434a..f01774b 100644 --- a/common/gtk-3.0/3.16/_transparent_widgets.scss +++ b/common/gtk-3.0/3.16/_transparent_widgets.scss @@ -1,5 +1,5 @@ .titlebar .separator { - color: darken($header_bg, 7%); //fixes separator in gnome-tweak-tool + color: $header_border; //fixes separator in gnome-tweak-tool } GtkFileChooserDialog .dialog-action-box { background-color: $bg_color } // fix for non gnome environments @@ -12,6 +12,16 @@ NemoWindow { -GtkPaned-handle-size: 0; } +@if $variant==dark { + GtkFileChooserDialog, + NautilusWindow , + NemoWindow { + .sidebar { border-right: 1px solid $dark_sidebar_border; } + + .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } + } +} + // Dark transparent sidebars GtkFileChooserDialog, NautilusWindow, @@ -84,7 +94,25 @@ GeditWindow.background.csd { .pane-separator, .pane-separator:hover { background-color: $dark_sidebar_border; } - .titlebar .pane-separator { background-color: darken($header_bg, 7%); } + .titlebar .pane-separator, + &.maximized .titlebar .pane-separator, + .titlebar .pane-separator:backdrop, + &.maximized .titlebar .pane-separator:backdrop { background-color: $header_border; } + + .titlebar { background-color: transparent; } + + &.maximized .titlebar { + background-color: opacify($header_bg, 1); + + &:backdrop { background-color: $header_bg_backdrop; } + } + + .gedit-titlebar-left.titlebar, + .gedit-titlebar-right.titlebar { + background-color: $header_bg; + + &:backdrop { background-color: $header_bg_backdrop; } + } } .gedit-bottom-panel-paned { background-color: $base_color; } @@ -188,7 +216,7 @@ GeditWindow.background.csd GeditFileBrowserView.view { // Filechooser bottom bar GtkFileChooserDialog .action-bar.frame { background-color: darken($dark_sidebar_bg, 2%); - border-color: darken($dark_sidebar_bg, 7%); + border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%)); GtkLabel { color: $dark_sidebar_fg; } |