This repository has been archived on 2021-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
ui/qml/styles/CwtchTextFieldStyle.qml

17 lines
365 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-04-16 19:40:19 +00:00
font.pointSize: 10 * gcd.themeScale
2019-02-12 22:47:23 +00:00
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-04-16 19:40:19 +00:00
implicitHeight: ptToPx(10 * gcd.themeScale)
2019-02-03 00:04:41 +00:00
color: windowItem.cwtch_background_color
border.color: windowItem.cwtch_color
}
}