From 8b1154550f3a5b57eebbc16c420f3dcf65d8cd35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 19 Mar 2020 19:13:51 +0100 Subject: Rename tbody to cal-cell. --- module/output/html.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'module/output/html.scm') 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)) -- cgit v1.2.3