2019-04-26 16:02:20 -04:00
|
|
|
import QtQuick 2.7
|
2019-04-28 15:36:43 -04:00
|
|
|
import QtQuick.Controls 2.2
|
2019-04-26 16:02:20 -04:00
|
|
|
|
|
|
|
TextField {
|
2019-04-28 15:13:18 -04:00
|
|
|
property alias backgroundColor: textFieldBackground.color
|
|
|
|
|
2019-07-06 17:50:55 -04:00
|
|
|
font.family: theme.fontFamily.sans
|
|
|
|
font.pixelSize: theme.fontSize.normal
|
2019-04-28 15:13:18 -04:00
|
|
|
|
2019-07-06 17:50:55 -04:00
|
|
|
color: theme.colors.foreground
|
2019-04-28 15:13:18 -04:00
|
|
|
background: Rectangle {
|
|
|
|
id: textFieldBackground
|
2019-07-06 17:50:55 -04:00
|
|
|
color: theme.controls.textField.background
|
2019-04-28 15:13:18 -04:00
|
|
|
}
|
2019-04-26 16:02:20 -04:00
|
|
|
|
|
|
|
selectByMouse: true
|
|
|
|
}
|