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

add basic open subtitle configuration

This commit is contained in:
Luke Pulverenti 2014-05-07 14:38:50 -04:00
parent 3b5259ce8e
commit 746a467d6a
20 changed files with 420 additions and 241 deletions

View file

@ -28,7 +28,7 @@
.listHeader {
margin-top: .5em;
margin-bottom: .2em;
padding-left: 7px;
padding-left: 4px;
}
.ehsContent {
@ -1070,3 +1070,85 @@ a.itemTag:hover {
width: 300px;
}
}
.spotlight {
position: absolute;
left: -220px;
right: 0;
background-size: cover;
background-position: center 25%;
background-repeat: no-repeat;
}
.spotlight, .spotlightPlaceHolder {
height: 340px;
}
.spotlightContainer {
min-height: 340px;
}
.spotlightPlaceHolder {
margin-bottom: 3em;
}
.spotlightTitle {
margin: 1em 0 .3em;
}
.spotlightContent {
position: absolute;
top: 60px;
bottom: 55px;
left: 210px;
width: 600px;
background: rgba(0,0,0,.6);
border-radius: 5px;
}
.rightSpotlightContent {
left: initial;
width: 400px;
right: 100px;
}
.spotlightPoster {
height: 100%;
background-size: 150px 100%;
background-position: left center;
background-repeat: no-repeat;
overflow: hidden;
}
.rightSpotlightContent .spotlightPoster {
background-size: 100% 180px;
background-position: center top;
}
.spotlightContentInner {
padding: 1em 1em 1em 170px;
}
.spotlightContentInner p {
max-height: 130px;
overflow: hidden;
text-overflow: ellipsis;
}
.rightSpotlightContent .spotlightContentInner {
padding: 195px 1em 1em 1em;
}
@media all and (max-height: 1079px) and (max-width: 1400px) {
.spotlight, .spotlightPlaceHolder, .spotlightTitle {
display: none;
}
}
@media all and (min-height: 1079px) and (min-width: 1400px) {
.type-home {
overflow-x: visible!important;
}
}

View file

@ -1,24 +1,20 @@
.libraryPage {
padding-top: 54px !important;
padding-top: 53px !important;
}
.libraryPage:not(.metadataEditorPage):not(.noSecondaryNavPage) {
padding-top: 97px !important;
padding-top: 102px !important;
}
.desktopLibraryMenu {
position: fixed;
left: 0;
z-index: 1001;
top: 54px;
background-color: #181818;
width: 180px;
top: 53px;
width: 200px;
min-height: 100px;
border-bottom-right-radius: 5px;
padding-bottom: 10px;
}
.itemDetailPage .desktopLibraryMenu {
background-color: rgba(0,0,0,.6);
}
@ -42,6 +38,9 @@
background: #000;
padding: 3px .25em 3px 1em;
border-bottom: 1px solid #101010;
border-top: 0;
border-left: 0;
border-right: 0;
}
.viewMenuLink {
@ -165,15 +164,15 @@
}
.libraryViewNav {
height: 42px;
height: 48px;
overflow: hidden;
border-bottom: 1px solid #333;
border-bottom: 1px solid #222;
position: fixed;
right: 0;
left: 0;
top: 54px;
top: 53px;
z-index: 1000;
background-color: #252525;
background-color: #181818;
}
.libraryViewNavInner {
@ -182,7 +181,7 @@
white-space: nowrap;
padding: 0 0 0;
overflow-x: auto;
height: 55px;
height: 61px;
}
.libraryViewNav .ui-btn-active .libraryViewNavLinkContent {
@ -207,7 +206,7 @@
.libraryViewNavLinkContent {
border-bottom: 5px solid transparent;
display: inline-block;
padding: 0 1em 7px;
padding: 2px 1em 11px;
color: #ddd;
}
@ -229,7 +228,7 @@
}
.libraryPage:not(.itemDetailPage):not(.metadataEditorPage) {
left: 195px !important;
left: 215px !important;
width: auto !important;
right: 0 !important;
}

View file

@ -119,6 +119,11 @@ pre, textarea.pre {
color: #1B58B8;
}
/* Bring these jqm font sizes down a little bit */
.ui-controlgroup-controls label {
font-size: 14px;
}
.hide {
display: none;
}