18 lines
384 B
QML
18 lines
384 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
|
|
TextField {
|
|
property alias backgroundColor: textFieldBackground.color
|
|
|
|
font.family: theme.fontFamily.sans
|
|
font.pixelSize: theme.fontSize.normal
|
|
|
|
color: theme.colors.foreground
|
|
background: Rectangle {
|
|
id: textFieldBackground
|
|
color: theme.controls.textField.background
|
|
}
|
|
|
|
selectByMouse: true
|
|
}
|