a gradient for contrast

This commit is contained in:
Marco Martin 2020-02-06 15:39:25 +01:00
parent 5002023fa9
commit 9278d99600
2 changed files with 24 additions and 3 deletions

View file

@ -167,8 +167,16 @@ Item {
height: root.height
Rectangle {
anchors.fill: parent
color: PlasmaCore.ColorScope.backgroundColor
opacity: showingApp
gradient: Gradient {
GradientStop {
position: 1.0
color: showingApp ? icons.backgroundColor : "transparent"
}
GradientStop {
position: 0.0
color: showingApp ? icons.backgroundColor : Qt.rgba(0, 0, 0, 0.2)
}
}
}
Loader {

View file

@ -116,7 +116,7 @@ PlasmaCore.ColorScope {
anchors.fill: parent
visible: plasmoid.configuration.PanelButtonsVisible
/*
Rectangle {
anchors.fill: parent
color: root.backgroundColor
@ -131,6 +131,19 @@ PlasmaCore.ColorScope {
color: PlasmaCore.ColorScope.textColor
opacity: 0.2
}
}*/
Rectangle {
anchors.fill: parent
gradient: Gradient {
GradientStop {
position: 0
color: showingApp ? PlasmaCore.ColorScope.backgroundColor : "transparent"
}
GradientStop {
position: 1
color: showingApp ? PlasmaCore.ColorScope.backgroundColor : Qt.rgba(0, 0, 0, 0.2)
}
}
}
Button {