updated design

This commit is contained in:
2026-08-11 16:34:09 +02:00
parent 3e02c3f36a
commit 39f925cb58
17 changed files with 859 additions and 19 deletions
+2 -1
View File
@@ -11,13 +11,14 @@ Item {
property color accent: Theme.primary
property color hoverFill: Theme.accent
property bool destructive: false
property bool selected: false
property real lean: Theme.skew
property real lunge: 6
property bool wide: false
signal clicked()
readonly property bool hovered: hover.hovered
readonly property bool hovered: hover.hovered || root.selected
readonly property bool pressed: tap.pressed
implicitWidth: wide ? 260 : (row.implicitWidth + panel.contentPad * 2)
+2
View File
@@ -103,6 +103,7 @@ PopupWindow {
}
function open() {
PopupCoordinator.claim(root);
exitAnim.stop();
shown = true;
enterAnim.restart();
@@ -183,6 +184,7 @@ PopupWindow {
root.pinned = false;
contentHolder.x = root.bleed;
contentHolder.y = root.bleed;
PopupCoordinator.release(root);
root.dismissedFully();
}
}