diff --git a/default/quickshell/omarchy-shell/plugins/image-picker/ImagePicker.qml b/default/quickshell/omarchy-shell/plugins/image-picker/ImagePicker.qml index 96054960..2b2cf640 100644 --- a/default/quickshell/omarchy-shell/plugins/image-picker/ImagePicker.qml +++ b/default/quickshell/omarchy-shell/plugins/image-picker/ImagePicker.qml @@ -382,7 +382,7 @@ Item { Rectangle { anchors.fill: parent - color: root.withAlpha(root.background, 0.72) + color: root.withAlpha(root.background, 0.5) } MouseArea { diff --git a/default/quickshell/omarchy-shell/plugins/menu/Menu.qml b/default/quickshell/omarchy-shell/plugins/menu/Menu.qml index acb8c93f..8bec6fe0 100644 --- a/default/quickshell/omarchy-shell/plugins/menu/Menu.qml +++ b/default/quickshell/omarchy-shell/plugins/menu/Menu.qml @@ -67,7 +67,7 @@ Item { property int dividerHeight: 17 property bool searchDivider: false property int layoutSerial: 0 - property int cardWidth: Math.min(300, panel.width - 48) + property int cardWidth: Math.min(root.activeMenu === "trigger.capture.screenrecord" ? 520 : 300, panel.width - 48) property int visibleRowsHeight: rowListHeight(layoutSerial, displayModel.count, filterText, searchDivider) property int cardHeight: Math.min(Math.max(220, contentMargin * 2 + headerHeight + contentSpacing + visibleRowsHeight), panel.height - 48) @@ -806,6 +806,11 @@ Item { WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive exclusionMode: ExclusionMode.Ignore + Rectangle { + anchors.fill: parent + color: root.withAlpha(root.background, 0.5) + } + MouseArea { anchors.fill: parent onClicked: root.cancel()