1
0
Fork 0
mirror of https://github.com/vinceliuice/MacSequoia-kde.git synced 2024-11-22 05:40:09 +00:00
MacSequoia-kde/sddm/MacSequoia-6.0/Input.qml

17 lines
379 B
QML
Raw Normal View History

2024-06-30 04:16:38 +00:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Controls 2.15
TextField {
placeholderTextColor: config.color
palette.text: config.color
font.pointSize: config.fontSize
font.family: config.font
width: parent.width
background: Rectangle {
color: parent.focus ? "#ffffff" : "#dddddd"
radius: 100
opacity: 0.45
}
}