From 09b66628f1452b4c95c70782a5223c72c52d972d Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Tue, 19 Aug 2014 12:37:58 +0200 Subject: [PATCH] this will be re-used in a few places so put it in components --- look-and-feel/contents/components/SatelliteStripe.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 look-and-feel/contents/components/SatelliteStripe.qml diff --git a/look-and-feel/contents/components/SatelliteStripe.qml b/look-and-feel/contents/components/SatelliteStripe.qml new file mode 100644 index 00000000..f3bd9b51 --- /dev/null +++ b/look-and-feel/contents/components/SatelliteStripe.qml @@ -0,0 +1,11 @@ +import QtQuick 2.0 +import org.kde.plasma.core 2.0 as PlasmaCore + +Rectangle { + color: "white" // FIXME + opacity: .5 + height: Math.max(100, units.gridUnit * 2.5) + width: parent.width + y: parent.height / 2 - height / 2 + x: 0 +}