aboutsummaryrefslogtreecommitdiff
path: root/components/Input.qml
blob: f71007f6127a42676a27b2d265002ae02d9b80ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
import QtQuick 2.2

TextField {
    font.family: "Arial"

    style: TextFieldStyle {
        textColor: "#3F3F3F"
        placeholderTextColor: "#BABABA"

        background: Rectangle {
            border.width: 0
            color: "transparent"
        }
    }
}