1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/css/chromecast.css

45 lines
983 B
CSS
Raw Normal View History

2014-05-11 01:11:53 -04:00
.btnCastImage {
2014-02-23 12:29:02 -05:00
background-color: transparent;
2014-06-23 12:05:19 -04:00
background-size: 100%;
2014-05-11 01:11:53 -04:00
background-repeat: no-repeat;
background-position: center center;
2015-01-21 01:26:16 -05:00
width: 26px;
2014-05-11 01:11:53 -04:00
height: 100%;
2014-06-22 01:52:31 -04:00
display: inline-block;
2015-01-21 01:26:16 -05:00
vertical-align: middle;
2014-02-23 12:29:02 -05:00
}
2014-05-11 01:11:53 -04:00
.btnDefaultCast .btnCastImage {
2014-02-23 15:35:58 -05:00
background-image: url(images/chromecast/ic_media_route_off_holo_dark.png);
2014-02-23 12:29:02 -05:00
}
2014-05-11 01:11:53 -04:00
.btnActiveCast .btnCastImage {
2014-02-23 12:29:02 -05:00
background-image: url(images/chromecast/ic_media_route_on_holo_dark.png);
2014-03-30 16:26:16 -07:00
}
2014-05-11 01:11:53 -04:00
.btnDisabledCast .btnCastImage {
2014-03-30 16:26:16 -07:00
background-image: url(images/chromecast/ic_media_route_disabled_holo_dark.png);
}
2014-06-22 01:52:31 -04:00
2015-01-21 14:21:19 -05:00
.btnCast {
white-space: nowrap;
}
2014-06-22 01:52:31 -04:00
.headerSelectedPlayer {
display: inline-block;
vertical-align: middle;
color: #ddd;
font-size: 11px;
margin-right: .5em;
position: relative;
2015-01-21 14:21:19 -05:00
top: 1px;
max-width: 100px;
text-overflow: ellipsis;
overflow: hidden;
2014-06-22 01:52:31 -04:00
}
2015-01-21 14:21:19 -05:00
@media all and (max-width: 1000px) {
2014-06-22 01:52:31 -04:00
.headerSelectedPlayer {
display: none;
}
2014-12-20 01:06:27 -05:00
}