added indicator for unavailable mediaitems

This commit is contained in:
booploops 2022-02-24 01:06:23 -08:00
parent 211497b32f
commit eb97c01536
2 changed files with 37 additions and 1 deletions

View file

@ -965,6 +965,29 @@
font-size: 12px;
}
.unavailable-overlay {
position: absolute;
top: 0px;
left: 0px;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 2;
pointer-events: none;
background: rgb(0 0 0 / 40%);
margin: 2em;
border-radius: 10px;
>.codicon {
font-size: 4em;
font-weight: bold;
opacity: 0.5;
}
}
&.mediaitem-video {
height: 200px;
width: 240px;