Added proper handling of items that begin late and end early.

This commit is contained in:
rainbow napkin 2025-02-09 17:29:07 -05:00
parent 330c4c275b
commit 179a10fb72
5 changed files with 286 additions and 69 deletions

View file

@ -505,18 +505,36 @@ div.queue-entry{
background-color: var(--bg2-alt1);
}
div.started-before-today{
div.started-yesterday{
border-top-left-radius: 0;
border-top-right-radius: 0;
border-top: 1px dashed var(--accent1);
}
div.ends-after-today{
div.ends-tomorrow{
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom: 1px dashed var(--accent1);
}
div.started-late{
border-top-left-radius: 0;
border-top-right-radius: 0;
border-top: 1px dashed var(--danger0-alt1);
}
div.ended-early{
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom: 1px dashed var(--danger0-alt1);
}
div.now-playing{
color: var(--focus0);
box-shadow: var(--focus-glow0);
text-shadow: var(--focus-glow0);
}
/* altcha theming*/
div.altcha{
box-shadow: 4px 4px 1px var(--bg1-alt0) inset;