mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
44 lines
702 B
CSS
44 lines
702 B
CSS
.btnDefaultCast .btnCastImageActive {
|
|
display: none;
|
|
}
|
|
|
|
.btnActiveCast .btnCastImageDefault {
|
|
display: none;
|
|
}
|
|
|
|
.btnActiveCast i {
|
|
color: #2ad !important;
|
|
}
|
|
|
|
.btnDisabledCast .btnCastImageActive {
|
|
display: none;
|
|
}
|
|
|
|
.btnDisabledCast i {
|
|
color: #555;
|
|
}
|
|
|
|
.headerSelectedPlayer {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: #ddd;
|
|
font-size: 11px;
|
|
margin-right: .5em;
|
|
position: relative;
|
|
top: 1px;
|
|
max-width: 100px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.btnCastIcon .headerSelectedPlayer {
|
|
top: 0;
|
|
}
|
|
|
|
@media all and (max-width: 600px) {
|
|
.headerSelectedPlayer {
|
|
display: none;
|
|
}
|
|
}
|