From 08d3dfbde51d4cb0a3bb8e58a81aa61064857d89 Mon Sep 17 00:00:00 2001 From: lassekongo83 Date: Thu, 31 Aug 2023 04:20:12 +0000 Subject: [PATCH] Fix #239 --- gtk/src/adw-gtk3/gtk-3.0/_apps.scss | 30 +++++++++++++++++++++++++ gtk/src/adw-gtk3/gtk-3.0/_colors.scss | 1 + gtk/src/adw-gtk3/gtk-3.0/_defaults.scss | 1 + 3 files changed, 32 insertions(+) diff --git a/gtk/src/adw-gtk3/gtk-3.0/_apps.scss b/gtk/src/adw-gtk3/gtk-3.0/_apps.scss index 508e2fa..eae6db4 100644 --- a/gtk/src/adw-gtk3/gtk-3.0/_apps.scss +++ b/gtk/src/adw-gtk3/gtk-3.0/_apps.scss @@ -1093,3 +1093,33 @@ geary-conversation-viewer#conversation_viewer { #DialogNotebook treeview.view:hover { background-color: gtkalpha($selected_bg_color, .5); } + +// ********** +// * Budgie * +// ********** + +.budgie-panel { + button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + + &.flat.launcher { + padding: 0; + } + } + + &.horizontal button, + #tasklist-button { + padding: 0 4px; + } + + &.vertical button { + padding: 4px 0; + } + + &.vertical #tasklist-button { + min-height: 32px; + } +} diff --git a/gtk/src/adw-gtk3/gtk-3.0/_colors.scss b/gtk/src/adw-gtk3/gtk-3.0/_colors.scss index 12573d2..580ede1 100644 --- a/gtk/src/adw-gtk3/gtk-3.0/_colors.scss +++ b/gtk/src/adw-gtk3/gtk-3.0/_colors.scss @@ -14,6 +14,7 @@ $headerbar_fg_color: gtkcolor(headerbar_fg_color); $headerbar_border_color: gtkalpha(gtkcolor(headerbar_border_color), .15); $headerbar_backdrop_color: gtkcolor(headerbar_backdrop_color); $headerbar_shade_color: gtkcolor(headerbar_shade_color); +$headerbar_darker_shade_color: gtkcolor(headerbar_darker_shade_color); $card_bg_color: gtkcolor(card_bg_color); $card_fg_color: gtkcolor(card_fg_color); $card_shade_color: gtkcolor(card_shade_color); diff --git a/gtk/src/adw-gtk3/gtk-3.0/_defaults.scss b/gtk/src/adw-gtk3/gtk-3.0/_defaults.scss index e1631f8..a8a95e6 100644 --- a/gtk/src/adw-gtk3/gtk-3.0/_defaults.scss +++ b/gtk/src/adw-gtk3/gtk-3.0/_defaults.scss @@ -45,6 +45,7 @@ @define-color headerbar_border_color #{if($variant == 'light', transparentize(black, .2), white)}; @define-color headerbar_backdrop_color @window_bg_color; @define-color headerbar_shade_color #{if($variant == 'light', transparentize(black, .93), transparentize(black, .64))}; +@define-color headerbar_darker_shade_color #{if($variant == 'light', transparentize(black, .88), transparentize(black, .1))}; // Split pane views @define-color sidebar_bg_color #{if($variant == 'light', #ebebeb, #303030)};