aboutsummaryrefslogtreecommitdiff
path: root/module/output/html.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-19 19:13:51 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-19 19:13:51 +0100
commit8b1154550f3a5b57eebbc16c420f3dcf65d8cd35 (patch)
tree2646cbfa0f4eb69f71e7d220db8d9cfddf94870b /module/output/html.scm
parentminor cleanup. (diff)
downloadcalp-8b1154550f3a5b57eebbc16c420f3dcf65d8cd35.tar.gz
calp-8b1154550f3a5b57eebbc16c420f3dcf65d8cd35.tar.xz
Rename tbody to cal-cell.
Diffstat (limited to 'module/output/html.scm')
-rw-r--r--module/output/html.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 54ac7538..42955f34 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -301,8 +301,7 @@
;; First day is a special case, since I always want to show a full date there.
;; For all other days I'm only interested in the parts that change.
(let* (((day-date . events) (stream-car event-groups)))
- `(div (@ (class "tbody")) "")
- `(div (@ (class "tbody"))
+ `(div (@ (class "cal-cell"))
(div (@ (class "date-info"))
(span (@ (class "day-number")) ,(date->string day-date "~e"))
(span (@ (class "month-name")) ,(date->string day-date "~b"))
@@ -312,7 +311,7 @@
(stream-map
(match-lambda
[(day-date . events)
- `(div (@ (class "tbody"))
+ `(div (@ (class "cal-cell"))
(div (@ (class "date-info"))
(span (@ (class "day-number")) ,(date->string day-date "~e"))
,(when (= 1 (day day-date))