26 lines
572 B
QML
26 lines
572 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: control.implicitHeight
|
|
}
|
|
|
|
color: Colors.foreground
|
|
implicitHeight: Typography.body.pixelSize + topPadding + bottomPadding
|
|
placeholderTextColor: Colors.interactive
|
|
font: Typography.body
|
|
padding: Dimensions.m
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
|
|
}
|