mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
47 lines
980 B
CSS
47 lines
980 B
CSS
.btnCastImage {
|
|
background-color: transparent;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
width: 23px;
|
|
height: 100%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.btnDefaultCast .btnCastImage {
|
|
background-image: url(images/chromecast/ic_media_route_off_holo_dark.png);
|
|
}
|
|
|
|
.btnActiveCast .btnCastImage {
|
|
background-image: url(images/chromecast/ic_media_route_on_holo_dark.png);
|
|
}
|
|
|
|
.btnDisabledCast .btnCastImage {
|
|
background-image: url(images/chromecast/ic_media_route_disabled_holo_dark.png);
|
|
}
|
|
|
|
.headerSelectedPlayer {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: #ddd;
|
|
font-size: 11px;
|
|
margin-right: .5em;
|
|
height: 100%;
|
|
position: relative;
|
|
top: -19px;
|
|
font-family: "Open Sans";
|
|
}
|
|
|
|
@media all and (max-width: 800px) {
|
|
.headerSelectedPlayer {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
|
|
@media all and (max-width: 400px) {
|
|
.btnCastImage {
|
|
width: 28px;
|
|
}
|
|
}
|