This commit is contained in:
Janus Knudsen 2025-08-04 23:55:04 +02:00
parent e37b3d7004
commit c164975494
3 changed files with 117 additions and 17 deletions

View file

@ -280,10 +280,19 @@ swp-week-header::after {
/* All-day events in row 2 */
swp-allday-event {
grid-row: 2; /* Row 2 only */
background: #ff9800; /* Orange background */
height: calc(var(--all-day-row-height) - 2px); /* Dynamic height minus margin */
background: #ff9800; /* Default orange background */
display: flex;
align-items: center;
justify-content: center;
justify-content: flex-start;
color: #fff;
font-size: 0.75rem;
padding: 2px 4px;
margin: 1px;
border-radius: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}