mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
21 lines
537 B
QML
21 lines
537 B
QML
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Controls 2.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
|
|
TextField {
|
|
placeholderTextColor: config.color
|
|
palette.text: config.color
|
|
font.pointSize: config.fontSize
|
|
font.family: config.font
|
|
background: Rectangle {
|
|
color: "#3B3D48"
|
|
radius: 10
|
|
width: parent.width
|
|
height: width / 9
|
|
opacity: 1
|
|
border.width: 1
|
|
border.color: parent.focus ? config.selected_color : "#16171d"
|
|
anchors.centerIn: parent
|
|
}
|
|
} |