lux-shell/components/StyledToolTip.qml
2025-09-06 08:45:35 -04:00

21 lines
475 B
QML

import qs.config
import QtQuick
import QtQuick.Controls
ToolTip {
id: control
text: qsTr("A descriptive tool tip of what the button does")
contentItem: Text {
text: control.text
font: control.font
color: Styling.theme.basecontent
}
background: Rectangle {
radius: Styling.theme.radiusBox
color: Styling.theme.base100
border.color: Styling.theme.base200
border.width: Styling.theme.border
}
}