diff --git a/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/_common.scss b/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/_common.scss index b5094c68..77790d75 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/_common.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/_common.scss @@ -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'); + } + } +} diff --git a/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/sync.sh b/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/sync.sh index 4633ff87..f5007c0a 100755 --- a/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/upstream-gtk-4/sync.sh @@ -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"