mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
52 lines
879 B
CSS
52 lines
879 B
CSS
|
.cardOverlayTarget {
|
|||
|
position: absolute;
|
|||
|
right: 0;
|
|||
|
left: 0;
|
|||
|
bottom: 0;
|
|||
|
top: 0;
|
|||
|
background-color: rgba(0, 0, 0, .85);
|
|||
|
z-index: 998;
|
|||
|
line-height: initial;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayInner {
|
|||
|
padding: 11px 12px 10px;
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayInner button:last-child {
|
|||
|
margin-right: 0 !important;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayInner p {
|
|||
|
white-space: nowrap;
|
|||
|
overflow: hidden;
|
|||
|
text-overflow: ellipsis;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayMediaInfo {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
flex-wrap: wrap;
|
|||
|
margin: 1em 0;
|
|||
|
color: #ddd;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayButtons {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
flex-wrap: wrap;
|
|||
|
}
|
|||
|
|
|||
|
.cardOverlayButtons .fab {
|
|||
|
background-color: #333;
|
|||
|
}
|
|||
|
|
|||
|
@media all and (max-width: 1200px) {
|
|||
|
|
|||
|
.cardOverlayInner {
|
|||
|
padding-left: 7px;
|
|||
|
padding-right: 7px;
|
|||
|
}
|
|||
|
}
|