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

restored live tv playback in the web client

This commit is contained in:
Luke Pulverenti 2014-03-30 12:49:40 -04:00
parent 121107918d
commit 7dd0efdcc2
11 changed files with 197 additions and 63 deletions

View file

@ -7,12 +7,18 @@
background-size: 100%;
vertical-align: middle;
margin: 0 .6em;
cursor: pointer;
border: 0 !important;
}
.btnCast:hover {
opacity: .5;
}
.btnDefaultCast {
background-image: url(images/chromecast/ic_media_route_off_holo_dark.png);
}
.btnActiveCast {
background-image: url(images/chromecast/ic_media_route_on_holo_dark.png);
}
}

View file

@ -1199,3 +1199,21 @@ a.itemTag:hover {
width: 32.95%;
}
}
.playerSelectionPanel {
width: 250px;
}
.ui-panel-dismiss-open.ui-panel-dismiss-position-right[data-panelid=playerSelectionPanel] {
right: 250px;
}
@media all and (min-width: 600px) {
.playerSelectionPanel {
width: 300px;
}
.ui-panel-dismiss-open.ui-panel-dismiss-position-right[data-panelid=playerSelectionPanel] {
right: 300px;
}
}