aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-23 00:41:20 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-23 00:41:20 +0100
commit75a6669e5370dd683502b9f11befc0ff657f0c61 (patch)
tree976c2c57c6329b330d3d76ed0e465031b7f0070f /static
parentRemove deprecated get-time. (diff)
downloadcalp-75a6669e5370dd683502b9f11befc0ff657f0c61.tar.gz
calp-75a6669e5370dd683502b9f11befc0ff657f0c61.tar.xz
Change style for continuing and continued long events HTML.
Diffstat (limited to 'static')
-rw-r--r--static/style.css20
1 files changed, 14 insertions, 6 deletions
diff --git a/static/style.css b/static/style.css
index 44322d63..70e2ade7 100644
--- a/static/style.css
+++ b/static/style.css
@@ -343,23 +343,31 @@ html, body {
/* */
+.longevents .event {
+ border-radius: 1em;
+ padding-left: 1em;
+}
+
.longevents .event.continuing {
border-right: none;
- background-image: linear-gradient(to left, #0007 0%,#FFF0 4em);
+ /* background-image: linear-gradient(to left, #0007 0%,#FFF0 4em); */
+ border-radius: 1em 0 0 1em;
}
.longevents .event.continued {
border-left: none;
- background-image: linear-gradient(to right, #FFF7 0%,#FFF0 6em);
+ /* background-image: linear-gradient(to right, #FFF7 0%,#FFF0 6em); */
+ border-radius: 0 1em 1em 0;
}
.longevents .event.continued.continuing {
border-left: none;
border-right: none;
- background-image:
- linear-gradient(to right,
- #FFF7 0%, #FFF0 10%,
- #FFF0 90%, #0007 100%);
+ /* background-image: */
+ /* linear-gradient(to right, */
+ /* #FFF7 0%, #FFF0 10%, */
+ /* #FFF0 90%, #0007 100%); */
+ border-radius: 0;
}