opaque/TextField.qml

16 lines
311 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.13
import "theme"
TextField {
color: Theme.mainTextColor
font.pointSize: 10 * gcd.themeScale
width: 100
background: Rectangle {
radius: 2
color: Theme.backgroundPaneColor
border.color: Theme.defaultButtonActiveColor
}
}