ui/qml/styles/CwtchTextFieldStyle.qml

14 lines
258 B
QML
Raw Normal View History

2019-02-03 00:04:41 +00:00
import QtQuick.Controls.Styles 1.4
import QtQuick 2.7
TextFieldStyle {
textColor: "black"
background: Rectangle {
radius: 2
implicitWidth: 100
implicitHeight: 24
color: windowItem.cwtch_background_color
border.color: windowItem.cwtch_color
}
}