mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 21:44:47 +02:00
23 lines
No EOL
445 B
QML
23 lines
No EOL
445 B
QML
import "../../controls" as HifiControls
|
|
import "../../styles-uit"
|
|
|
|
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
TextField {
|
|
id: control
|
|
font.family: "Fira Sans"
|
|
font.pixelSize: 15;
|
|
color: 'black'
|
|
|
|
AvatarAppStyle {
|
|
id: style
|
|
}
|
|
|
|
background: Rectangle {
|
|
implicitWidth: 200
|
|
implicitHeight: 40
|
|
color: style.colors.inputFieldBackground
|
|
border.color: style.colors.lightGray
|
|
}
|
|
} |