Files
status-node/ui/shared/StyledTextField.qml

12 lines
340 B
QML
Raw Permalink Normal View History

2021-08-18 15:59:52 -04: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
}