From 4b611ff24f87c3c1b6e7ad77bfcebcf94c502049 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 1 Aug 2018 18:40:19 +0200 Subject: A bit of opacity for events --- views/calendar/qml/WeekView.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/views/calendar/qml/WeekView.qml b/views/calendar/qml/WeekView.qml index 1386e53b..8aa9fe94 100644 --- a/views/calendar/qml/WeekView.qml +++ b/views/calendar/qml/WeekView.qml @@ -204,6 +204,7 @@ FocusScope { color: Kube.Colors.viewBackgroundColor + //Grid Column { anchors.fill: parent Repeater { @@ -212,7 +213,7 @@ FocusScope { height: root.hourHeight * 2 width: parent.width color: "transparent" - border.width:1 + border.width: 1 border.color: Kube.Colors.lightgrey } } @@ -250,6 +251,7 @@ FocusScope { //color: model.modelData.color color: Kube.Colors.bewareOrange + opacity: 0.8 border.width: 1 border.color: Kube.Colors.viewBackgroundColor @@ -303,7 +305,7 @@ FocusScope { Rectangle { anchors.fill: parent color: Kube.Colors.buttonColor - opacity: 0.4 + opacity: 0.2 visible: root.currentDate.getDate() > dayDelegate.date.getDate() } -- cgit v1.2.3