From dd8ead6d143983ca6b772f0502fe77b708bfebe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 22 Apr 2019 19:42:34 +0200 Subject: Fix events spanning over multiple days. --- static/style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 1a98358b..45574f0f 100644 --- a/static/style.css +++ b/static/style.css @@ -80,6 +80,24 @@ body { z-index: 0; } +.event.continuing { + border-bottom: none; + background-image: linear-gradient(to top, #fefcea 0%,#FFF0 20%); +} + +.event.continued { + border-top: none; + background-image: linear-gradient(to bottom, #fefcea 0%,#FFF0 20%); +} + +.event.continued.continuing { + border-top: none; + border-top: bottom; + background-image: + linear-gradient(to bottom, #fefcea 0%, #FFF0 20%, + #FFF0 80%, #fefcea 100%); +} + .selected { width: 100% !important; left: 0 !important; -- cgit v1.2.3