From c64f3a01222f4d178410db3e43f281455c8e2a90 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:18:37 +0100 Subject: [PATCH] combobox: make color names more consistent with other buttons --- .../ii/modules/common/widgets/StyledComboBox.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index 75bb76f28..150dbc249 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -10,16 +10,16 @@ ComboBox { property string buttonIcon: "" property real buttonRadius: height / 2 - property color buttonBackground: Appearance.colors.colSecondaryContainer - property color buttonBackgroundHover: Appearance.colors.colSecondaryContainerHover - property color buttonBackgroundActive: Appearance.colors.colSecondaryContainerActive + property color colBackground: Appearance.colors.colSecondaryContainer + property color colBackgroundHover: Appearance.colors.colSecondaryContainerHover + property color colBackgroundActive: Appearance.colors.colSecondaryContainerActive implicitHeight: 40 Layout.fillWidth: true background: Rectangle { radius: root.buttonRadius - color: root.down ? root.buttonBackgroundActive : root.hovered ? root.buttonBackgroundHover : root.buttonBackground + color: root.down ? root.colBackgroundActive : root.hovered ? root.colBackgroundHover : root.colBackground Behavior on color { ColorAnimation {