clide/qml/Menu/ClideMenuBarItem.qml

17 lines
305 B
QML
Raw Normal View History

2025-03-29 08:01:13 -04:00
import QtQuick
import QtQuick.Controls
MenuItem {
id: root
background: Rectangle {
color: root.hovered ? "#4b4f51" : "#3c3f41" // Hover effect
radius: 2.5
}
contentItem: IconLabel {
color: "white"
font.family: "Helvetica"
text: root.text
}
}