diff --git a/install.sh b/install.sh index b4f3b754..a2de4cdb 100755 --- a/install.sh +++ b/install.sh @@ -692,10 +692,12 @@ uninstall() { } uninstall_theme() { - for theme in "${themes[@]}"; do - for color in "${colors[@]}"; do - for size in "${sizes[@]}"; do - uninstall "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" + for theme in "${THEME_VARIANTS[@]}"; do + for color in "${COLOR_VARIANTS[@]}"; do + for size in "${SIZE_VARIANTS[@]}"; do + for scheme in "${SCHEME_VARIANTS[@]}"; do + uninstall "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" + done done done done diff --git a/src/sass/gtk/_common-4.0.scss b/src/sass/gtk/_common-4.0.scss index ae0b0fa8..5330c9e6 100644 --- a/src/sass/gtk/_common-4.0.scss +++ b/src/sass/gtk/_common-4.0.scss @@ -3733,7 +3733,7 @@ list { background-clip: padding-box; > row { - padding: $space-size; + padding: 2px; background-clip: padding-box; } @@ -4619,7 +4619,7 @@ separator.sidebar { > row { min-height: $small-size; - padding: $space-size; + padding: $space-size / 2; border-radius: $corner-radius; margin: $space-size / 4 $space-size; }