ui/qml/styles/CwtchTextFieldStyle.qml

18 lines
324 B
QML
Raw Permalink Normal View History

2019-02-03 00:04:41 +00:00
import QtQuick.Controls.Styles 1.4
import QtQuick 2.7
TextFieldStyle {
2019-02-12 22:47:23 +00:00
id: root
2019-02-03 00:04:41 +00:00
textColor: "black"
2019-02-12 22:47:23 +00:00
font.pointSize: 10
property int width: 100
2019-02-03 00:04:41 +00:00
background: Rectangle {
radius: 2
2019-02-12 22:47:23 +00:00
implicitWidth: root.width
2019-02-03 00:04:41 +00:00
implicitHeight: 24
color: windowItem.cwtch_background_color
border.color: windowItem.cwtch_color
}
}