forked from Shinonome/dots-hyprland
32 lines
660 B
QML
32 lines
660 B
QML
import qs.modules.common
|
|
import QtQuick
|
|
import QtQuick.Controls.FluentWinUI3
|
|
import QtQuick.Controls
|
|
|
|
TextField {
|
|
id: root
|
|
|
|
clip: true
|
|
renderType: Text.NativeRendering
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: Looks.colors.fg
|
|
|
|
palette {
|
|
active: Looks.colors.accent
|
|
}
|
|
|
|
font {
|
|
hintingPreference: Font.PreferDefaultHinting
|
|
family: Looks.font.family.ui
|
|
pixelSize: Looks.font.pixelSize.normal
|
|
weight: Looks.font.weight.regular
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton
|
|
hoverEnabled: true
|
|
cursorShape: Qt.IBeamCursor
|
|
}
|
|
}
|