opaque/styles/CwtchTextFieldStyle.qml

17 lines
356 B
QML
Raw Permalink Normal View History

2020-05-19 19:49:52 +00:00
import QtQuick.Controls.Styles 1.4
import QtQuick 2.7
2020-05-19 23:22:13 +00:00
import "../theme"
2020-05-19 19:49:52 +00:00
TextFieldStyle {
id: root
textColor: "black"
font.pointSize: 10 * gcd.themeScale
property int width: parent.width
background: Rectangle {
radius: 2
2020-05-19 23:22:13 +00:00
color: Theme.backgroundPaneColor
border.color: Theme.defaultButtonActiveColor//??
2020-05-19 19:49:52 +00:00
}
}