diff options
author | raveit65 <[email protected]> | 2019-05-12 14:02:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-05-12 14:02:47 +0200 |
commit | 3bde1f1aa605bc418e921786243bd8c09a23fb0e (patch) | |
tree | e3b10daf3a4a6df0b7c594bdcc60eeaa841f9ca0 /desktop-themes/Blue-Submarine | |
parent | 34b6bfd9eea7dfcf6393181850b7b7aa6f44bd10 (diff) | |
download | mate-themes-3bde1f1aa605bc418e921786243bd8c09a23fb0e.tar.bz2 mate-themes-3bde1f1aa605bc418e921786243bd8c09a23fb0e.tar.xz |
all themes: adjustments for headerbars
- border-radius fixes for double headerbars
- separator fixes
- height fixes
- dropping old workarounds
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index 50fe7c4c..ae343092 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -5957,6 +5957,7 @@ entry.cursor-handle.bottom, ***************/
headerbar,
+.horizontal.titlebar, /* eg. tilix */
.background.ssd > paned.horizontal.titlebar,
.background.csd > paned.horizontal.titlebar,
.background.solid-csd > paned.horizontal.titlebar {
@@ -5967,6 +5968,8 @@ headerbar, box-shadow: inset 0 -1px shade(@wm_bg_b, 0.95);
}
+headerbar,
+.titlebar,
headerbar.titlebar,
.background.ssd > paned.horizontal.titlebar,
.background.csd > paned.horizontal.titlebar,
@@ -5975,24 +5978,23 @@ headerbar.titlebar, border-style: solid;
border-color: shade(@borders_headerbar, 0.90);
border-radius: 7px 7px 0px 0px;
- padding: 6px 6px 5px 6px;
+ padding: 2px 6px;
}
-/* fix for gedit, .titlebar does not match headerbar selector */
-.background.ssd > paned.horizontal.titlebar > headerbar,
-.background.csd > paned.horizontal.titlebar > headerbar,
-.background.solid-csd > paned.horizontal.titlebar > headerbar {
- box-shadow: none;
+.horizontal.titlebar headerbar:first-child,
+paned.horizontal.titlebar headerbar:first-child {
+ border-top-right-radius: 0px;
}
-/* fix for ie. gthumb */
-.titlebar > headerbar {
- border-radius: 7px 7px 0 0;
+.horizontal.titlebar headerbar:last-child,
+paned.horizontal.titlebar headerbar:last-child {
+ border-top-left-radius: 0px;
}
.background.ssd > paned.horizontal.titlebar > separator, /* gedit */
.background.csd > paned.horizontal.titlebar > separator,
-.background.solid-csd > paned.horizontal.titlebar > separator {
+.background.solid-csd > paned.horizontal.titlebar > separator,
+.horizontal.titlebar separator.vertical.tilix-title-separator { /* tilix */
min-width: 1px;
background-color: shade(@menu_fg_dark_color, 0.3);
border-image: -gtk-gradient (linear,
@@ -6004,13 +6006,6 @@ headerbar.titlebar, border-style: solid;
}
-/* ie. meld */
-dialog.background.csd > headerbar.titlebar,
-dialog.background.ssd > headerbar.titlebar,
-dialog.background.solid-csd > headerbar.titlebar {
- padding: 4px 6px 5px 6px;
-}
-
headerbar.titlebar:backdrop {
border-image: linear-gradient(to top,
@unfocused_borders_headerbar,
|