status-desktop/ui/shared/StyledTextField.qml
emizzle bc1525f513 feat: 1-on-1 chat command ENS flow
1-on-1 chat command to send and request a transaction to/from a contact with ENS enabled.
2020-11-05 11:25:45 -05:00

12 lines
333 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.secondaryHover
}