mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
18 lines
330 B
QML
18 lines
330 B
QML
|
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"
|
||
|
}
|
||
|
}
|
||
|
}
|