Files
sendou.ink/app/features/availability/components/ScheduleDayCell.module.css
Kalle 23875c7c67
Some checks failed
E2E Tests / e2e (push) Has been cancelled
Tests and checks on push / run-checks-and-tests (push) Has been cancelled
Updates translation progress / update-translation-progress-issue (push) Has been cancelled
Custom theme improvements (#3410)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-09-23 17:43:48 +03:00

55 lines
880 B
CSS

.content {
display: flex;
flex-direction: column;
gap: var(--s-0-5);
}
.range {
white-space: nowrap;
}
.unknown,
.unavailable {
color: var(--color-text-high);
}
.busy {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--s-0-5);
max-width: 10rem;
padding: var(--s-1);
background: repeating-linear-gradient(
-45deg,
var(--color-bg-higher) 0 5px,
transparent 5px 10px
);
border-radius: var(--radius-field);
align-self: flex-start;
& .busyTime,
& .busyName {
max-width: 100%;
padding-inline: var(--s-1);
font-size: var(--font-3xs);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-color: var(--color-bg);
border-radius: var(--radius-full);
}
& .busyTime {
color: var(--color-text-high);
}
& .busyName {
color: var(--color-text);
}
}
.noteFlag {
color: var(--color-fg-accent);
}