mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-19 18:41:29 +00:00
19 lines
353 B
QML
19 lines
353 B
QML
|
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"
|
||
|
}
|
||
|
}
|
||
|
}
|