1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix dark/light color of quick menu

This commit is contained in:
Elias Steurer 2021-12-12 22:05:02 +01:00
parent d9bf1a8558
commit 55f0228a6c

View File

@ -138,8 +138,8 @@ Rectangle {
anchors.centerIn: quickActionRow
width: quickActionRow.width + 5
height: quickActionRow.height - 16
color: "transparent"
border.color: Material.iconDisabledColor
color: Material.theme === Material.Light ? Material.background : "#242424"
border.color: Material.theme === Material.Light ? Material.iconDisabledColor : Qt.darker(Material.background)
border.width: 1
radius: 3
}
@ -231,7 +231,7 @@ Rectangle {
}
Rectangle {
color: Material.iconDisabledColor
color: Material.theme === Material.Light ? Material.iconDisabledColor : Qt.darker(Material.background)
height: quickActionRowBackground.height
width: 1
}