mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-02 17:54:45 +00:00
parent
6f2742d2ac
commit
7dbb9fd46a
1 changed files with 4 additions and 4 deletions
|
|
@ -217,16 +217,16 @@ Rectangle {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height
|
height: parent.height
|
||||||
radius: 5
|
radius: 5
|
||||||
color: "white"
|
color: PlasmaCore.Theme.buttonBackgroundColor
|
||||||
visible: modelData.length > 0
|
visible: modelData.length > 0
|
||||||
|
|
||||||
AbstractButton {
|
AbstractButton {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
onPressedChanged: {
|
onPressedChanged: {
|
||||||
if(pressed)
|
if(pressed)
|
||||||
parent.color = "#e0e0e0"
|
parent.color = PlasmaCore.Theme.buttonFocusColor
|
||||||
else
|
else
|
||||||
parent.color = "white"
|
parent.color = PlasmaCore.Theme.buttonBackgroundColor
|
||||||
}
|
}
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
@ -262,7 +262,7 @@ Rectangle {
|
||||||
text: modelData
|
text: modelData
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
font.pointSize: 18
|
font.pointSize: 18
|
||||||
color: "#424242"
|
color: PlasmaCore.Theme.textColor
|
||||||
}
|
}
|
||||||
|
|
||||||
PlasmaCore.IconItem {
|
PlasmaCore.IconItem {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue