status-node/ui/shared/StyledTextField.qml

12 lines
340 B
QML
Raw Normal View History

2021-08-18 19:59:52 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import "../imports"
TextField {
font.family: Style.current.fontRegular.name
color: readOnly ? Style.current.secondaryText : Style.current.textColor
selectByMouse: !readOnly
selectedTextColor: Style.current.textColor
selectionColor: Style.current.primarySelectionColor
}