Stub CSS for displaying events in a cluster

@kevinmcconnell in order for the clusters to work, we'll need to update `timeline_conteroller.js` to set `grid-column-start` and `grid-row-start` on `.cluster` so it displays in the correct hour/action cell. Then we'll enable these styles to display them together without overlapping.
This commit is contained in:
Jason Zimdars
2025-01-24 20:06:58 -06:00
parent 13dacceca2
commit d01e62a2ed
+13
View File
@@ -10,6 +10,19 @@
.event--cluster {
display: contents;
/* FIXME re-enable this once we can set grid-column-start and grid-row-start on the cluster element */
/* &:has(.event + .event) {
display: grid;
grid-row-start: 12;
padding-block: var(--block-space-half);
.event {
grid-column-start: unset !important;
grid-row-start: unset !important;
}
} */
}
.event {