diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 20:15:37 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 20:15:37 +1000 |
| commit | 24c0ba77fc623d33190c420c3438a6ebf4f176f8 (patch) | |
| tree | 7a0d0d69ff9684ffc7d6527aad68fc28f38203e3 /modules | |
| parent | internal: add opacity mask component (diff) | |
| download | caelestia-shell-24c0ba77fc623d33190c420c3438a6ebf4f176f8.tar.gz caelestia-shell-24c0ba77fc623d33190c420c3438a6ebf4f176f8.tar.bz2 caelestia-shell-24c0ba77fc623d33190c420c3438a6ebf4f176f8.zip | |
utilities: extend modal scrim fade
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/utilities/RecordingDeleteModal.qml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/modules/utilities/RecordingDeleteModal.qml b/modules/utilities/RecordingDeleteModal.qml index f3efe87..b608885 100644 --- a/modules/utilities/RecordingDeleteModal.qml +++ b/modules/utilities/RecordingDeleteModal.qml @@ -52,12 +52,12 @@ Loader { asynchronous: true ShapePath { - startX: -Config.border.rounding + startX: -Config.border.rounding * 2 startY: shape.height - Config.border.thickness strokeWidth: 0 fillGradient: LinearGradient { orientation: LinearGradient.Horizontal - x1: -Config.border.rounding + x1: -Config.border.rounding * 2 GradientStop { position: 0 @@ -69,6 +69,10 @@ Loader { } } + PathLine { + relativeX: Config.border.rounding + relativeY: 0 + } PathArc { relativeY: -Config.border.rounding radiusX: Config.border.rounding @@ -80,7 +84,7 @@ Loader { relativeY: Config.border.rounding + Config.border.thickness } PathLine { - relativeX: -Config.border.rounding + relativeX: -Config.border.rounding * 2 relativeY: 0 } } @@ -90,7 +94,7 @@ Loader { strokeWidth: 0 fillGradient: LinearGradient { orientation: LinearGradient.Vertical - y1: -Config.border.rounding + y1: -Config.border.rounding * 2 GradientStop { position: 0 @@ -110,6 +114,10 @@ Loader { direction: PathArc.Counterclockwise } PathLine { + relativeX: 0 + relativeY: -Config.border.rounding + } + PathLine { relativeX: Config.border.thickness relativeY: 0 } |