Calendar view: improve differentiation between events’ states (Z#173939) (#2595)

This commit is contained in:
Richard Schreiber
2022-04-14 15:51:46 +02:00
committed by GitHub
parent 8f7bc59214
commit 2f6881934e
3 changed files with 25 additions and 26 deletions

View File

@@ -37,13 +37,13 @@
}
&.continued, &.over {
background: lighten(#767676, 48%);
border-color: lighten(#767676, 30%);
border-left-color: lighten(#767676, 30%);
background: lighten(#767676, 54%);
border-color: lighten(#767676, 44%);
border-left-color: lighten(#767676, 44%);
color: #767676;
&:hover {
background: lighten(#767676, 50%);
border-color: lighten(#767676, 25%);
background: lighten(#767676, 54%);
border-color: lighten(#767676, 40%);
}
}
@@ -82,8 +82,19 @@
}
}
.event-name {
&.available > *:first-child,
&.continued > *:first-child,
&.soon > *:first-child {
font-weight: bold;
}
&.over > *:first-child,
&.reserved > *:first-child,
&.soldout > *:first-child {
text-decoration: line-through
}
.event-name {
display: block;
}
.event-time, .event-status {