GTK3 & GTK4 tweaks

- Recover thunar's root-warning banner
- Reduce size of thunar's root-warning banner
- Move panel-background color to _colors.scss
- Lighten gtk4 button's color to match gtk3
- Use lighter color for tabs
This commit is contained in:
Daniel Ruiz de Alegría
2021-05-17 13:47:55 +02:00
parent e482365068
commit 0f1cfd2521
13 changed files with 39 additions and 55 deletions
+3
View File
@@ -46,6 +46,9 @@ $osd_outer_borders_color: transparentize(white, 0.9);
$sidebar_bg_color: mix($bg_color, $base_color, 50%);
$base_hover_color: transparentize($fg_color, 0.95);
$panel_bg : transparentize($bg_color, if($variant=='light', 0.1, 0.2));
$panel_fg: if($variant=='light', darken($fg_color, 10%), $fg_color);
$tooltip_borders_color: $osd_outer_borders_color;
$shadow_color: transparentize(black, if($variant == 'light', 0.9, 0.7));
+4 -9
View File
@@ -1,5 +1,3 @@
$panel_bg : transparentize($bg_color, if($variant=='light', .1, .2));
/* Nautilus */
@define-color disk_space_unknown #383c4a;
@define-color disk_space_used #{"" +$selected_bg_color};
@@ -86,7 +84,7 @@ filechooser,
box-shadow: none;
text-shadow: none;
background: transparent;
color: if($variant=='light', darken($fg_color, 10%), $fg_color);
color: $panel_fg;
$_highlight_bg_color: if($variant=='light', $bg_color, rgba(black, .2));
@@ -220,9 +218,6 @@ wnck-pager {
}
/* Thunar */
// Hide root user warning
.thunar .warning {
opacity: 0;
font-size: 0;
margin: -10px 0;
}
// Reduce height of root user warning
.thunar .warning { margin: -7px 0; }
@@ -258,7 +258,6 @@ notebook {
&:checked {
@include button(normal);
background: $base_color;
&:backdrop { @include button(backdrop); }
}
+1 -1
View File
@@ -4,7 +4,7 @@ GREEN='\033[0;32m'
YELLOW='\033[0;33m'
RESET='\033[0m'
VERSION=3.24.28
VERSION=3.24.29
echo
printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n"
@@ -284,7 +284,6 @@ notebook {
&:checked {
@include button(normal);
background: $base_color;
&:backdrop {
@include button(backdrop);
@@ -133,7 +133,7 @@ $_default_button_c: lighten($bg_color,2%);
color: $tc;
outline-color: if($c != $_default_button_c, $alt_focus_border_color, $focus_border_color);
border-color: if($c!=$_default_button_c, _border_color($c, true), $borders_color); //tint if not default button color
background-image: image(lighten($c, 7%));
background-image: image(lighten($c, 5%));
@include _shadows($_button_shadow);
}
@@ -8,4 +8,4 @@
< background-image: if($variant == 'light', linear-gradient(to top, darken($c, 2%) 2px, $c),
< linear-gradient(to top, darken($c,1%) 2px, $c));
---
> background-image: image(lighten($c, 7%));
> background-image: image(lighten($c, 5%));