aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-07-13 15:13:08 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-07-13 15:13:08 +0200
commit413f77a3a745159100614da3113d1b9ac325e5ee (patch)
tree4ecf601279133fee8aea68f72ea18805a89809de
parentApply event blankspace to long events. (diff)
downloadcalp-413f77a3a745159100614da3113d1b9ac325e5ee.tar.gz
calp-413f77a3a745159100614da3113d1b9ac325e5ee.tar.xz
Remove width:calc(100%*var(--editmode)) from created events.
-rw-r--r--module/output/html.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 78fd2b9e..df8909e9 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -833,7 +833,11 @@
(caddar ; strip <a> tag
(make-block (car (children cal))
`((class " generated ")
- (style "width:calc(100%*var(--editmode));")))))))))))
+ ;; TODO currently without this the event is always
+ ;; full width. Adding this however completely breaks
+ ;; creation of long events.
+ ;; (style "width:calc(100%*var(--editmode));")
+ ))))))))))