GTK3: Update 3.24.26

This commit is contained in:
Daniel Ruiz de Alegría 2021-03-02 11:28:41 +01:00
parent 4e7487e755
commit 9c9adc221e
2 changed files with 25 additions and 11 deletions

View File

@ -2640,6 +2640,9 @@ notebook {
**************/ **************/
scrollbar { scrollbar {
$_slider_min_length: 40px; $_slider_min_length: 40px;
$_slider_width: 8px;
$_scrollbar_transition: all 300ms $ease-out-quad;
$_fine-tune_slider_border: $_slider_width - 3; //3672
// disable steppers // disable steppers
@at-root * { @at-root * {
@ -2648,7 +2651,7 @@ scrollbar {
} }
background-color: $scrollbar_bg_color; background-color: $scrollbar_bg_color;
transition: 300ms $ease-out-quad; transition: $_scrollbar_transition;
// scrollbar border // scrollbar border
&.top { border-bottom: 1px solid $borders_color; } &.top { border-bottom: 1px solid $borders_color; }
@ -2664,13 +2667,14 @@ scrollbar {
// slider // slider
slider { slider {
min-width: 6px; min-width: $_slider_width;
min-height: 6px; min-height: $_slider_width;
margin: -1px; margin: -1px;
border: 4px solid transparent; border: 4px solid transparent;
border-radius: 8px; border-radius: 10px;
background-clip: padding-box; background-clip: padding-box;
background-color: $scrollbar_slider_color; background-color: $scrollbar_slider_color;
transition: $_scrollbar_transition;
&:hover { background-color: $scrollbar_slider_hover_color; } &:hover { background-color: $scrollbar_slider_hover_color; }
@ -2683,12 +2687,13 @@ scrollbar {
&.fine-tune { &.fine-tune {
slider { slider {
min-width: 4px; transition: none;
min-height: 4px; min-width: $_fine-tune_slider_border+1;
min-height: $_fine-tune_slider_border+1;
} }
&.horizontal slider { border-width: 5px 4px; } &.horizontal slider { border-width: $_fine-tune_slider_border 4px; }
&.vertical slider { border-width: 4px 5px; } &.vertical slider { border-width: 4px $_fine-tune_slider_border; }
} }
&.overlay-indicator { &.overlay-indicator {
@ -4574,12 +4579,21 @@ decoration {
} }
.maximized &, .maximized &,
.fullscreen &, .fullscreen & { border-radius: 0; box-shadow: none; }
.tiled &, .tiled &,
.tiled-top &, .tiled-top &,
.tiled-right &, .tiled-right &,
.tiled-bottom &, .tiled-bottom &,
.tiled-left & { border-radius: 0; } .tiled-left & {
border-radius: 0;
box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; //transparent control workaround -- #3670
&:backdrop { box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; // #3670
}
}
.popup & { box-shadow: none; } .popup & { box-shadow: none; }

View File

@ -4,7 +4,7 @@ GREEN='\033[0;32m'
YELLOW='\033[0;33m' YELLOW='\033[0;33m'
RESET='\033[0m' RESET='\033[0m'
VERSION=3.24.24 VERSION=3.24.26
echo echo
printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n" printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n"