summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/WeekView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'views/calendar/qml/WeekView.qml')
-rw-r--r--views/calendar/qml/WeekView.qml6
1 files 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 {
204 204
205 color: Kube.Colors.viewBackgroundColor 205 color: Kube.Colors.viewBackgroundColor
206 206
207 //Grid
207 Column { 208 Column {
208 anchors.fill: parent 209 anchors.fill: parent
209 Repeater { 210 Repeater {
@@ -212,7 +213,7 @@ FocusScope {
212 height: root.hourHeight * 2 213 height: root.hourHeight * 2
213 width: parent.width 214 width: parent.width
214 color: "transparent" 215 color: "transparent"
215 border.width:1 216 border.width: 1
216 border.color: Kube.Colors.lightgrey 217 border.color: Kube.Colors.lightgrey
217 } 218 }
218 } 219 }
@@ -250,6 +251,7 @@ FocusScope {
250 251
251 //color: model.modelData.color 252 //color: model.modelData.color
252 color: Kube.Colors.bewareOrange 253 color: Kube.Colors.bewareOrange
254 opacity: 0.8
253 border.width: 1 255 border.width: 1
254 border.color: Kube.Colors.viewBackgroundColor 256 border.color: Kube.Colors.viewBackgroundColor
255 257
@@ -303,7 +305,7 @@ FocusScope {
303 Rectangle { 305 Rectangle {
304 anchors.fill: parent 306 anchors.fill: parent
305 color: Kube.Colors.buttonColor 307 color: Kube.Colors.buttonColor
306 opacity: 0.4 308 opacity: 0.2
307 visible: root.currentDate.getDate() > dayDelegate.date.getDate() 309 visible: root.currentDate.getDate() > dayDelegate.date.getDate()
308 } 310 }
309 311