forked from Shinonome/dots-hyprland
cleaner import; sidebar quick toggles
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user