GTK4: Update 4.1.0

This commit is contained in:
Daniel Ruiz de Alegría 2021-03-02 12:10:50 +01:00 committed by Daniel Ruiz de Alegría
parent fdebb9eec4
commit 966bd870ee
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C
2 changed files with 42 additions and 8 deletions

View File

@ -746,6 +746,7 @@ button {
.linked.vertical > & { @extend %linked_vertical; }
menubutton.circular &,
&.circular { // force circular button shape
min-width: 32px;
min-height: 32px;
@ -1766,6 +1767,17 @@ treeview.view {
color: $fg_color;
transition: none; //I shouldn't need this
}
sort-indicator {
&.ascending {
-gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
}
&.descending {
-gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
}
min-height: 16px;
min-width: 16px;
}
}
}
@ -2271,11 +2283,11 @@ scrollbar {
&.right { border-left: 1px solid $borders_color; }
> range > trough > slider {
min-width: 6px;
min-height: 6px;
min-width: 10px;
min-height: 10px;
margin: -1px;
border: 4px solid transparent;
border-radius: 8px;
border-radius: 10px;
background-clip: padding-box;
background-color: $scrollbar_slider_color;
@ -2288,12 +2300,12 @@ scrollbar {
> range.fine-tune {
> trough > slider {
min-width: 4px;
min-height: 4px;
min-width: 6px;
min-height: 6px;
}
&.horizontal > trough > slider { border-width: 5px 4px; }
&.vertical > trough > slider { border-width: 4px 5px; }
&.horizontal > trough > slider { border-width: 6px 4px; }
&.vertical > trough > slider { border-width: 4px 6px; }
}
&.overlay-indicator {
@ -4303,3 +4315,25 @@ popover.entry-completion > contents {
statusbar {
padding: 6px 10px 6px 10px;
}
menubutton {
arrow {
min-height: 16px;
min-width: 16px;
&.none {
-gtk-icon-source: -gtk-icontheme('open-menu-symbolic');
}
&.down {
-gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
}
&.up {
-gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
}
&.left {
-gtk-icon-source: -gtk-icontheme('pan-start-symbolic');
}
&.right {
-gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
}
}
}

View File

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