diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-18 10:54:15 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-18 10:54:56 +0100 |
commit | 70b930c9c300839ae89964bc785b25327f7b10bc (patch) | |
tree | 0e91cf584ca7472d842ffa4c3680c1f958142fb8 /desktop-themes/Blue-Submarine | |
parent | efb43049be130865eebc5ce7eb21c177b2c6b778 (diff) | |
download | mate-themes-70b930c9c300839ae89964bc785b25327f7b10bc.tar.bz2 mate-themes-70b930c9c300839ae89964bc785b25327f7b10bc.tar.xz |
GTK+-3.20 Blue-Submarine: notebook fine tuning
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 7 |
1 files changed, 6 insertions, 1 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 49525d61..2f0233a6 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -3197,6 +3197,7 @@ notebook header.top { background-image: linear-gradient(to bottom,
shade(@theme_bg_color, 0.86),
shade(@theme_bg_color, 1.05));
+ box-shadow: inset 0px -1px alpha(shade(@button_border, 1.00), 0.90);
}
notebook header.bottom {
@@ -3204,6 +3205,7 @@ notebook header.bottom { background-image: linear-gradient(to top,
shade(@theme_bg_color, 0.86),
shade(@theme_bg_color, 1.05));
+ box-shadow: inset 0px 1px alpha(shade(@button_border, 1.00), 0.90);
}
notebook header.left {
@@ -3211,6 +3213,7 @@ notebook header.left { background-image: linear-gradient(to right,
shade(@theme_bg_color, 0.86),
shade(@theme_bg_color, 1.05));
+ box-shadow: inset -1px 0px alpha(shade(@button_border, 1.00), 0.90);
}
notebook header.right {
@@ -3218,6 +3221,7 @@ notebook header.right { background-image: linear-gradient(to left,
shade(@theme_bg_color, 0.86),
shade(@theme_bg_color, 1.05));
+ box-shadow: inset 1px 0px alpha(shade(@button_border, 1.00), 0.90);
}
notebook header tab {
@@ -3244,12 +3248,13 @@ notebook header tab .active-page label { /* tabs in view areas, ie. pluma-, caja-tabs */
paned.horizontal notebook header tab {
- padding: 4px;
+ padding: 2px 4px;
}
paned.horizontal notebook header.top {
border-radius: 0px;
border-width: 0px;
+ box-shadow: none;
}
paned.horizontal notebook header.top tab:active,
|