2020-06-19 18:21:02 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
TextField {
|
2020-07-02 15:14:31 +00:00
|
|
|
font.family: Style.current.fontRegular.name
|
2020-10-28 07:44:09 +00:00
|
|
|
color: readOnly ? Style.current.secondaryText : Style.current.textColor
|
|
|
|
selectByMouse: !readOnly
|
2020-10-20 13:54:47 +00:00
|
|
|
selectedTextColor: Style.current.textColor
|
|
|
|
selectionColor: Style.current.secondaryHover
|
2020-06-19 18:21:02 +00:00
|
|
|
}
|