lux-shell/components/StyledMenu.qml
2025-09-05 17:30:09 -04:00

28 lines
530 B
QML

import qs.config
import QtQuick
import QtQuick.Controls
Menu {
id: root
palette.window: Styling.theme.base100
palette.base: Styling.theme.base100
focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
enter: Transition {
NumberAnimation {
property: "opacity"
from: 0.0
to: 1.0
}
}
exit: Transition {
NumberAnimation {
property: "opacity"
from: 1.0
to: 0.0
}
}
}