mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 14:33:08 +00:00
16 lines
365 B
QML
16 lines
365 B
QML
|
|
import QtQuick 2.0
|
||
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||
|
|
|
||
|
|
Rectangle {
|
||
|
|
gradient: Gradient {
|
||
|
|
GradientStop { position: 0.0; color: "#FFEDDF00" }
|
||
|
|
GradientStop { position: 3.0; color: "#00EDDF00" }
|
||
|
|
}
|
||
|
|
|
||
|
|
opacity: 0.6
|
||
|
|
height: Math.max(100, units.gridUnit * 2.5)
|
||
|
|
width: parent.width
|
||
|
|
y: parent.height / 2 - height / 2
|
||
|
|
x: 0
|
||
|
|
}
|