mirror of
https://github.com/overte-org/overte.git
synced 2025-07-31 00:30:13 +02:00
26 lines
654 B
QML
26 lines
654 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 2.1
|
|
|
|
TextField {
|
|
id: control
|
|
color: "#FFFFFF"
|
|
font.family: "Graphik Medium"
|
|
font.pixelSize: 22
|
|
verticalAlignment: TextInput.AlignVCenter
|
|
horizontalAlignment: TextInput.AlignLeft
|
|
placeholderText: "PlaceHolder"
|
|
property string seperatorColor: "#FFFFFF"
|
|
background: Item {
|
|
anchors.fill: parent
|
|
Rectangle {
|
|
anchors {
|
|
bottom: parent.bottom
|
|
left: parent.left
|
|
leftMargin: 7
|
|
right: parent.right
|
|
}
|
|
height: 1
|
|
color: control.seperatorColor
|
|
}
|
|
}
|
|
}
|