mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 15:59:26 -05:00
21 lines
467 B
QML
21 lines
467 B
QML
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ToolTip {
|
|
property string content
|
|
parent: parent
|
|
visible: parent.hovered
|
|
padding: 7
|
|
background: Rectangle {
|
|
color: Appearance.colors.colTooltip
|
|
radius: Appearance.rounding.small
|
|
}
|
|
StyledText {
|
|
text: content
|
|
id: tooltipText
|
|
color: Appearance.colors.colOnTooltip
|
|
}
|
|
} |