From 21c51119614342c101749f7c92656b1c03dc44c8 Mon Sep 17 00:00:00 2001 From: Pico Date: Fri, 14 Nov 2025 01:15:18 +0300 Subject: [PATCH] added shadow to items list --- .../ii/modules/common/widgets/StyledComboBox.qml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index 16c48f749..6ae65984e 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -156,9 +156,17 @@ ComboBox { } } - background: Rectangle { - radius: Appearance.rounding.normal - color: Appearance.colors.colSurfaceContainerHigh + background: Item { + StyledRectangularShadow { + target: popupBackground + } + + Rectangle { + id: popupBackground + anchors.fill: parent + radius: Appearance.rounding.normal + color: Appearance.colors.colSurfaceContainerHigh + } } contentItem: StyledListView {