calendar like slot overview

This commit is contained in:
Jörg Henke
2024-01-05 10:42:05 +01:00
parent 568dfc8a64
commit 7fc30ffe48
6 changed files with 98 additions and 21 deletions

View File

@ -406,7 +406,7 @@ body {
.slot_badge {
white-space: nowrap;
margin-bottom: 2px;
margin-bottom: 4px;
}
.slot_badge_left {
@ -415,6 +415,8 @@ body {
background-color: #ccc;
color: black;
padding-left: 2px;
padding-top: 2px;
padding-bottom: 2px;
}
[data-bs-theme=dark] .slot_badge_left {
@ -424,8 +426,8 @@ body {
.slot_badge_middle {
border-top: 1px solid silver;
border-bottom: 1px solid silver;
padding-left: 2px;
padding-right: 2px;
padding: 2px;
text-decoration: none;
}
.slot_badge_middle:hover {
@ -439,8 +441,24 @@ body {
background-color: transparent;
color: black;
padding-right: 2px;
padding-top: 2px;
padding-bottom: 2px;
}
[data-bs-theme=dark] .slot_badge_right {
color: white;
}
.flex-row-weekday {
display: flex;
flex-flow: row wrap;
}
.row-weekday > .col {
flex: 0 1 calc(100%/7);
max-width: calc(100%/7);
}
.boldy {
font-weight: bolder;
}