diff options
| author | marcin <z.krzysztoff7@gmail.com> | 2014-07-07 19:08:30 +0200 |
|---|---|---|
| committer | marcin <z.krzysztoff7@gmail.com> | 2014-07-07 19:08:30 +0200 |
| commit | 62df25ce8e090f53aef822c2b22c754fd4fca3e1 (patch) | |
| tree | cf7af7fb5e3700dc26599f46aebf6676cb832a21 /components/Input.qml | |
| download | monzero-gui-62df25ce8e090f53aef822c2b22c754fd4fca3e1.tar.gz monzero-gui-62df25ce8e090f53aef822c2b22c754fd4fca3e1.tar.xz monzero-gui-62df25ce8e090f53aef822c2b22c754fd4fca3e1.zip | |
first push
Diffstat (limited to 'components/Input.qml')
| -rw-r--r-- | components/Input.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/components/Input.qml b/components/Input.qml new file mode 100644 index 00000000..98acf532 --- /dev/null +++ b/components/Input.qml @@ -0,0 +1,18 @@ +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 +import QtQuick 2.2 + +TextField { + font.family: "Arial" + font.pixelSize: 18 + + style: TextFieldStyle { + textColor: "#3F3F3F" + placeholderTextColor: "#BABABA" + + background: Rectangle { + border.width: 0 + color: "transparent" + } + } +} |
