Calendar V3

This commit is contained in:
2026-03-11 13:15:20 +01:00
parent a4815fc672
commit 94215fdd65
13 changed files with 190 additions and 61 deletions

View File

@@ -668,29 +668,32 @@ div.luxtools-calendar td.luxtools-calendar-day {
.luxtools-calendar-indicator {
position: absolute;
width: 6px;
height: 6px;
border-radius: 50%;
width: 10px;
height: 10px;
}
.luxtools-indicator-general {
top: 2px;
left: 2px;
.luxtools-indicator-top-left {
top: 0;
left: 0;
clip-path: polygon(0 0, 100% 0, 0 100%);
}
.luxtools-indicator-maintenance {
top: 2px;
right: 2px;
.luxtools-indicator-top-right {
top: 0;
right: 0;
clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.luxtools-indicator-slot3 {
bottom: 2px;
right: 2px;
.luxtools-indicator-bottom-right {
bottom: 0;
right: 0;
clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.luxtools-indicator-slot4 {
bottom: 2px;
left: 2px;
.luxtools-indicator-bottom-left {
bottom: 0;
left: 0;
clip-path: polygon(0 0, 0 100%, 100% 100%);
}