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

update subtitle methods

This commit is contained in:
Luke Pulverenti 2015-07-19 23:43:13 -04:00
parent fe7c084ae4
commit adfc486508
23 changed files with 83 additions and 63 deletions

View file

@ -360,7 +360,7 @@
@media all and (max-width: 480px) {
.backdropCard.fullWidthCardOnMobile {
.backdropCard {
width: 100% !important;
}
}
@ -575,7 +575,7 @@
@media all and (max-width: 480px) {
.detailPage169Card.fullWidthCardOnMobile {
.detailPage169Card {
width: 100% !important;
}
}

View file

@ -42,7 +42,7 @@
}
.ui-page-theme-b:not(.pageWithAbsoluteTabs), .pageWithAbsoluteTabs .pageBackground {
background-color: #1f1f1f;
background-color: #242424;
}
.backdropContainer {

View file

@ -35,7 +35,7 @@
border-radius: 1000px;
}
.viewMenuBar .fa, .viewMenuBar paper-icon-button {
.viewMenuBar paper-icon-button {
color: #fff;
vertical-align: middle;
}
@ -201,7 +201,7 @@
}
.viewMenuBar, .libraryViewNav {
background-color: #111;
background-color: #121212;
}
.paperLibraryViewNav {

View file

@ -185,7 +185,7 @@
}
.channelPrograms, .timeslotHeadersInner {
width: 8000px;
width: 12000px;
}
.timeslotHeader {
@ -269,9 +269,9 @@
overflow: hidden;
}
.pointerInput .programCellInner:hover {
background-color: #444;
}
.pointerInput .programCellInner:hover {
background-color: #444;
}
.timeslotCellInner {
position: absolute;
@ -312,6 +312,20 @@
top: 7px;
}
@media (max-width: 1920px) {
.channelPrograms, .timeslotHeadersInner {
width: 10000px;
}
}
@media (max-width: 1600px) {
.channelPrograms, .timeslotHeadersInner {
width: 8000px;
}
}
@media (max-width: 600px) {
.guideChannelImage {
@ -366,4 +380,4 @@
.channelList, .programGrid {
height: auto !important;
}
}

View file

@ -304,7 +304,7 @@ html {
-ms-touch-action: manipulation;
touch-action: manipulation;
/* Prevent white flickering */
background-color: #1f1f1f;
background-color: #262626;
/* Normalize for different browsers */
margin: 0;
padding: 0;
@ -660,7 +660,7 @@ h1 .imageLink {
.warningFieldDescription {
padding: 5px;
border: 1px solid #f4c63f;
background: #ffefaa;
background: #fff3a5;
border-radius: 5px;
}
@ -868,15 +868,8 @@ h1 .imageLink {
}
.directoryPickerHeadline {
border: 1px solid #f7c942;
color: #222;
background: #fff9df;
background-image: -webkit-gradient(linear,left top,left bottom,from(#fffadf),to(#fff3a5));
background-image: -webkit-linear-gradient(#fffadf,#fff3a5);
background-image: -moz-linear-gradient(#fffadf,#fff3a5);
background-image: -ms-linear-gradient(#fffadf,#fff3a5);
background-image: -o-linear-gradient(#fffadf,#fff3a5);
background-image: linear-gradient(#fffadf,#fff3a5);
color: #000;
background: #fff3a5;
padding: 1em;
border-radius: 5px;
}