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

progress on channels api

This commit is contained in:
Luke Pulverenti 2014-03-17 21:45:41 -04:00
parent fdda8549ba
commit 7a6bae9783
13 changed files with 152 additions and 41 deletions

View file

@ -1,12 +1,4 @@
.ui-icon-remote:after {
background-image: url("images/icons/remote.png");
}
/* Fallback */
.ui-nosvg .ui-icon-remote:after {
background-image: url("images/icons/remote.png");
}
.ui-icon-play:after {
.ui-icon-play:after {
background-image: url("images/icons/play.png");
}
/* Fallback */
@ -93,13 +85,6 @@
.ui-nosvg .ui-icon-subtitles:after {
background-image: url("images/icons/subtitles.png");
}
.ui-icon-tv:after {
background-image: url("images/icons/tv.png");
}
/* Fallback */
.ui-nosvg .ui-icon-tv:after {
background-image: url("images/icons/tv.png");
}
.ui-icon-wireless:after {
background-image: url("images/icons/wireless.png");
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 346 B

View file

@ -1106,6 +1106,27 @@ a.itemTag:hover {
text-overflow: ellipsis;
}
.selectionCommands {
margin: 1em 0;
}
.itemSelectionPanel {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 55px;
background-color: rgba(0, 0, 0, .85);
z-index: 1000;
text-align: center;
padding: 1em;
}
.selectionCommandsControlGroup {
display: inline-block;
margin-left: .5em;
}
@media all and (min-height: 500px) {
.alphabetPicker {

View file

@ -304,6 +304,14 @@
@media all and (min-width: 1440px) {
.squarePosterItem {
width: 180px;
}
.squarePosterItem .posterItemImage {
height: 180px;
}
.backdropPosterItem {
width: 298px;
}