status-desktop/ui/shared/StyledTextField.qml
staked-smart-ace 96b09fd025 Fixes #1611
2021-01-14 15:59:45 -05:00

12 lines
340 B
QML

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
}