diff options
author | Horst3180 | 2016-03-29 00:58:12 +0200 |
---|---|---|
committer | Horst3180 | 2016-03-29 00:58:12 +0200 |
commit | ad624e0720e0cca4a3def144d2025102e23d8a84 (patch) | |
tree | 6ba168e4ec942766a2d95c72afc1ffcf0972d643 /common/gtk-3.0/3.20/sass | |
parent | b6a4dc4d1fa859b723f71c8cdf37c4a3ec84edbd (diff) | |
download | solarc-theme-ad624e0720e0cca4a3def144d2025102e23d8a84.tar.gz solarc-theme-ad624e0720e0cca4a3def144d2025102e23d8a84.tar.xz solarc-theme-ad624e0720e0cca4a3def144d2025102e23d8a84.zip |
handle separators in split titlebars correctly
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 5f23dd9..7a66400 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -1105,17 +1105,19 @@ headerbar { // Fixes split headerbars too .titlebar:not(headerbar) { - window.csd > &, - window.csd > &:backdrop { - padding: 0; - background-color: transparent; - background-image: none; - border-style: none; - border-color: transparent; - box-shadow: none; + window > &, + window.csd > & { + &, &:backdrop { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + border-color: transparent; + box-shadow: none; + } } - > separator { background: $header_border; } + > separator { background-image: linear-gradient(to top, $header_border); } @extend %titlebar; } |