jellyfin-web/dashboard-ui/css/chromecast.css

60 lines
1.2 KiB
CSS
Raw Normal View History

2015-05-08 09:58:27 -07:00
.btnCastImage:not(.btnCastIcon) {
2014-02-23 10:29:02 -07:00
background-color: transparent;
2014-06-23 09:05:19 -07:00
background-size: 100%;
2014-05-10 22:11:53 -07:00
background-repeat: no-repeat;
background-position: center center;
2015-05-10 14:56:13 -07:00
width: 28px;
2014-05-10 22:11:53 -07:00
height: 100%;
2014-06-21 22:52:31 -07:00
display: inline-block;
2015-01-20 23:26:16 -07:00
vertical-align: middle;
2014-02-23 10:29:02 -07:00
}
2014-05-10 22:11:53 -07:00
.btnDefaultCast .btnCastImage {
2014-02-23 13:35:58 -07:00
background-image: url(images/chromecast/ic_media_route_off_holo_dark.png);
2014-02-23 10:29:02 -07:00
}
2014-05-10 22:11:53 -07:00
.btnActiveCast .btnCastImage {
2014-02-23 10:29:02 -07:00
background-image: url(images/chromecast/ic_media_route_on_holo_dark.png);
2014-03-30 16:26:16 -07:00
}
2015-05-08 09:58:27 -07:00
.btnActiveCast i {
color: #2ad !important;
}
2014-05-10 22:11:53 -07: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-21 22:52:31 -07:00
2015-05-08 09:58:27 -07:00
.btnDisabledCast i {
color: #555;
}
2015-01-21 12:21:19 -07:00
.btnCast {
white-space: nowrap;
2015-05-10 14:56:13 -07:00
position: relative;
top: 1px !important;
2015-01-21 12:21:19 -07:00
}
2014-06-21 22:52:31 -07:00
.headerSelectedPlayer {
display: inline-block;
vertical-align: middle;
color: #ddd;
font-size: 11px;
margin-right: .5em;
position: relative;
2015-01-21 12:21:19 -07:00
top: 1px;
max-width: 100px;
text-overflow: ellipsis;
overflow: hidden;
2014-06-21 22:52:31 -07:00
}
2015-05-08 09:58:27 -07:00
.btnCastIcon .headerSelectedPlayer {
top: 0;
}
2015-01-21 12:21:19 -07:00
@media all and (max-width: 1000px) {
2014-06-21 22:52:31 -07:00
.headerSelectedPlayer {
display: none;
}
2015-05-08 09:58:27 -07:00
}