opaque/TextField.qml

16 lines
311 B
QML
Raw Normal View History

2020-05-19 19:49:52 +00:00
import QtQuick 2.7
import QtQuick.Controls 2.13
2020-05-19 23:25:00 +00:00
import "theme"
2020-05-19 19:49:52 +00:00
TextField {
color: Theme.mainTextColor
2020-05-19 19:49:52 +00:00
font.pointSize: 10 * gcd.themeScale
width: 100
background: Rectangle {
radius: 2
2020-05-19 23:24:22 +00:00
color: Theme.backgroundPaneColor
border.color: Theme.defaultButtonActiveColor
2020-05-19 19:49:52 +00:00
}
}