24 lines
473 B
QML
24 lines
473 B
QML
import QtQuick
|
|
import QtQuick.Templates as T
|
|
|
|
T.TextField
|
|
{
|
|
id: control
|
|
background: Rectangle
|
|
{
|
|
id: background
|
|
color: Colors.mantle
|
|
radius: Dimensions.radius
|
|
border.width: !control.focus ? 1 : 2
|
|
border.color: Colors.interactive
|
|
height: 47
|
|
}
|
|
|
|
color: Colors.foreground
|
|
implicitHeight: background.height
|
|
placeholderTextColor: Colors.interactive
|
|
font: Typography.body
|
|
padding: Dimensions.s
|
|
|
|
}
|