wallpaperPicker select color

This commit is contained in:
Teo
2026-02-17 14:52:01 +01:00
parent db77867852
commit 7e67be30c7
+7 -6
View File
@@ -43,7 +43,7 @@ PanelWindow {
radius: 12 radius: 12
color: "#2b2b2b" color: "#2b2b2b"
border.color: filterText.activeFocus ? "#4da3ff" : "#555" border.color: filterText.activeFocus ? Colors.tertiary : Colors.primary
border.width: 1 border.width: 1
} }
@@ -60,7 +60,7 @@ PanelWindow {
width: parent.width - 35 width: parent.width - 35
height: parent.height - 100 height: parent.height - 100
color: Qt.alpha(Colors.surfaceContainer, 0.5) color: Colors.surfaceContainer
radius: 10 radius: 10
clip: true clip: true
@@ -116,9 +116,10 @@ PanelWindow {
// pictures + text // pictures + text
delegate: Rectangle { delegate: Rectangle {
width: grid.cellWidth width: grid.cellWidth -10
height: grid.cellHeight height: grid.cellHeight -25
color: "transparent" color: mouseArea.containsMouse ? Qt.alpha(Colors.surfaceContainerHover, 0.5) : "transparent"
radius: 10
Column { Column {
spacing: 20 spacing: 20
@@ -205,7 +206,7 @@ PanelWindow {
anchors.fill: parent anchors.fill: parent
radius: 10 radius: 10
color: "transparent" color: "transparent"
border.color: Colors.outline border.color: Colors.primary
border.width: 1 border.width: 1
z: 999 z: 999
} }