mirror of
https://github.com/vinceliuice/MacSequoia-kde.git
synced 2024-11-22 13:50:13 +00:00
16 lines
379 B
QML
16 lines
379 B
QML
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
|
|
}
|
|
}
|