mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 14:52:13 +00:00
Fix: Visible calendar items when selected
This commit is contained in:
parent
2d17afc0f6
commit
7074e13047
1 changed files with 16 additions and 3 deletions
|
|
@ -7,8 +7,6 @@
|
|||
flex-direction: column;
|
||||
background-color: var(--overlay-color);
|
||||
border-radius: var(--border-radius);
|
||||
border: 0.15rem solid transparent;
|
||||
transition: border-color 0.1s ease-out;
|
||||
|
||||
.heading {
|
||||
flex: none;
|
||||
|
|
@ -82,6 +80,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
border: 0.15rem solid transparent;
|
||||
border-radius: var(--border-radius);
|
||||
box-sizing: border-box;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
transition: border-color 0.1s ease-out;
|
||||
}
|
||||
|
||||
&.today {
|
||||
.heading {
|
||||
background-color: var(--primary-accent-color);
|
||||
|
|
@ -89,7 +100,9 @@
|
|||
}
|
||||
|
||||
&.active {
|
||||
border-color: var(--primary-foreground-color);
|
||||
&::before {
|
||||
border-color: var(--primary-foreground-color);
|
||||
}
|
||||
}
|
||||
|
||||
&:not(.active):hover {
|
||||
|
|
|
|||
Loading…
Reference in a new issue