monero-gui/components/LineEdit.qml

31 lines
590 B
QML
Raw Normal View History

2014-07-07 17:08:30 +00:00
import QtQuick 2.0
Item {
property alias placeholderText: input.placeholderText
property alias text: input.text
2014-07-19 14:07:40 +00:00
property int fontSize: 18
2014-07-07 17:08:30 +00:00
height: 37
Rectangle {
anchors.fill: parent
anchors.bottomMargin: 1
color: "#DBDBDB"
//radius: 4
2014-07-07 17:08:30 +00:00
}
Rectangle {
anchors.fill: parent
anchors.topMargin: 1
color: "#FFFFFF"
//radius: 4
2014-07-07 17:08:30 +00:00
}
Input {
id: input
anchors.fill: parent
anchors.leftMargin: 4
anchors.rightMargin: 4
2014-07-19 14:07:40 +00:00
font.pixelSize: parent.fontSize
2014-07-07 17:08:30 +00:00
}
}