mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-09 07:12:07 -04:00
18 lines
447 B
QML
18 lines
447 B
QML
import QtQuick
|
|
import qs.Common
|
|
|
|
Rectangle {
|
|
id: inputFieldRect
|
|
|
|
default property alias contentData: inputFieldRect.data
|
|
property bool hasFocus: false
|
|
property int fieldHeight: Theme.fontSizeMedium + Theme.spacingL * 2
|
|
|
|
width: parent.width
|
|
height: fieldHeight
|
|
radius: Theme.cornerRadius
|
|
color: Theme.surfaceHover
|
|
border.color: hasFocus ? Theme.primary : Theme.outlineStrong
|
|
border.width: hasFocus ? 2 : 1
|
|
}
|