19 lines
415 B
QML
19 lines
415 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
import Utils 1.0
|
|
|
|
TextField {
|
|
implicitHeight: 58
|
|
color: Palette.textColor
|
|
selectByMouse: true
|
|
selectionColor: Palette.selectedTextBackgroundColor
|
|
|
|
background: Rectangle {
|
|
color: enabled ? Palette.backgroundColor : Palette.hoveredBackgroundColor
|
|
border.color: Palette.borderColor
|
|
border.width: 1
|
|
radius: 8
|
|
}
|
|
}
|