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

added sync job database

This commit is contained in:
Luke Pulverenti 2014-07-26 13:30:15 -04:00
parent 3944c8c0cb
commit 2384a7e088
32 changed files with 535 additions and 228 deletions

224
dashboard-ui/css/card.css Normal file
View file

@ -0,0 +1,224 @@
.card {
display: inline-block;
text-align: left;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
-ms-transition: all 500ms ease;
transition: all 500ms ease;
position: relative;
}
.cardBox {
margin: 4px 4px;
}
.visualCardBox {
padding: 5px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
-ms-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
background: #fff;
}
.cardScalable {
position: relative;
}
.card-16-9 .cardPadder {
padding-bottom: 56.25%;
}
.card-1-1 .cardPadder {
padding-bottom: 100%;
}
.card-4-3 .cardPadder {
padding-bottom: 75%;
}
.card-3-2 .cardPadder {
padding-bottom: 66.666666666667%;
}
.cardContent {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.cardContent:hover {
-moz-box-shadow: 0 0 0 5px #38c;
-webkit-box-shadow: 0 0 0 5px #38c;
box-shadow: 0 0 0 5px #38c;
}
.cardBox .cardContent:hover {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.cardContent:hover .cardImage {
opacity: .5;
}
/*.preview-overlay-container {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-opacity: 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
background: rgba(0,0,0,0.4);
cursor: pointer;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}*/
.cardFooter {
}
.cardContent .cardFooter {
position: absolute;
bottom: 0;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.7))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* W3C */
left: 0;
right: 0;
color: #fff;
}
.cardText {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: none;
white-space: nowrap;
padding: 5px 4px 4px;
text-shadow: none;
font-size: 13px;
font-weight: 400;
}
.cardContent .cardText {
padding-left: 5px;
padding: 0 5px 4px;
}
@media all and (max-width: 600px) {
.packageReviewText {
display: none;
}
}
.cardImage {
background-size: contain;
background-repeat: no-repeat;
background-position: center bottom;
width: 100%;
height: 100%;
}
.card-1-1 {
width: 50%;
}
.card-16-9:not(.manualSize) {
width: 50%;
}
@media all and (min-width: 500px) {
.card-1-1 {
width: 33.3%;
}
}
@media all and (min-width: 540px) {
.card-16-9:not(.manualSize) {
width: 33.3%;
}
}
@media all and (min-width: 800px) {
.card-1-1 {
width: 25%;
}
}
@media all and (min-width: 1000px) {
.card-1-1 {
width: 20%;
}
.card-16-9:not(.manualSize) {
width: 25%;
}
}
@media all and (min-width: 1200px) {
.card-1-1 {
width: 16.666666666666666666666666666667%;
}
}
@media all and (min-width: 1400px) {
.card-1-1 {
width: 14.285714285714285714285714285714%;
}
.card-16-9:not(.manualSize) {
width: 20%;
}
}
@media all and (min-width: 1600px) {
.card-1-1 {
width: 12.5%;
}
.card-16-9:not(.manualSize) {
width: 16.666666666666666666666666666667%;
}
}
.detailPage169Card {
width: 50%;
}
@media all and (min-width: 540px) {
.detailPage169Card {
width: 33.3%;
}
}

View file

@ -28,8 +28,7 @@
margin-right: .5em;
height: 100%;
position: relative;
top: -19px;
font-family: "Open Sans";
top: -20px;
}
@media all and (max-width: 800px) {

Binary file not shown.

View file

@ -541,10 +541,6 @@ a.itemTag:hover {
}
.lblDetailTab {
font-size: 14px !important;
font-weight: 400 !important;
font-family: 'Open Sans';
padding: .5em 1em;
border-color: #1f1f1f !important;
}
@ -577,22 +573,6 @@ a.itemTag:hover {
color: #52B54B !important;
}
.libraryPanelCollapsibleHeader a {
font-size: 16px;
font-weight: 300 !important;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.selectedLibraryPanelLink {
background: #38c !important;
}
.libraryPanelLink {
font-size: 14px;
font-weight: 300 !important;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.detailImageProgressContainer {
position: absolute;
bottom: 10px;
@ -1237,7 +1217,6 @@ a.itemTag:hover {
right: 1.3em;
font-weight: normal;
font-size: 13px;
font-family: "Open Sans";
}
.itemsListview .ui-li-count {

View file

@ -28,7 +28,7 @@
bottom: 0;
vertical-align: middle;
text-align: center;
border: 0!important;
border: 0 !important;
outline: none;
padding: 0 20px;
cursor: pointer;
@ -67,11 +67,11 @@
padding: .5em;
background-color: #181818;
border-radius: 5px;
height: 14px!important;
height: 14px !important;
}
.barsMenuButton:hover {
opacity: 1!important;
opacity: 1 !important;
}
.barsMenuButton img:hover {
@ -87,7 +87,7 @@
.libraryMenuButtonText {
color: #fff !important;
text-decoration: none;
font-weight: 400!important;
font-weight: 400 !important;
font-size: 15px;
display: inline-block;
vertical-align: middle;
@ -127,7 +127,7 @@
.viewMenuLink {
text-decoration: none;
color: #ccc!important;
color: #ccc !important;
padding: 7px .5em 6px;
display: inline-block;
vertical-align: middle;
@ -135,7 +135,7 @@
.viewMenuTextLink:hover {
background-color: #38c;
color: #fff!important;
color: #fff !important;
opacity: 1;
}
@ -162,9 +162,9 @@
.viewMenuTextLink {
display: block;
padding: .6em .5em .6em 38px!important;
padding: .6em .5em .6em 38px !important;
font-size: 15px;
font-weight: 300!important;
font-weight: 300 !important;
font-family: Roboto;
background-repeat: no-repeat;
background-size: 14px 14px;
@ -239,16 +239,16 @@
}
.selectedMediaFolder {
background-color: #52B54B!important;
color: #fff!important;
background-color: #52B54B !important;
color: #fff !important;
}
.itemDetailPage .selectedMediaFolder {
background-color: rgba(51,136,204,.8)!important;
background-color: rgba(51,136,204,.8) !important;
}
.ui-panel.ui-body-b {
background-color: #181818;
background-color: #222;
}
.libraryViewNavInner {
@ -260,30 +260,35 @@
height: 61px;
}
.libraryViewNav .ui-btn-active .libraryViewNavLinkContent {
.libraryViewNav .ui-btn-active {
border-bottom-color: #38c;
color: #fff;
color: #fff !important;
}
.libraryViewNav a {
display: inline-block;
padding: 12px 0 0;
color: #eee!important;
padding: 12px 0 9px;
color: #ddd !important;
text-decoration: none;
margin: 0 0;
position: relative;
font-weight: normal;
border-bottom: 5px solid transparent;
}
.libraryViewNav a:hover {
color: #bbb!important;
color: #2ad !important;
}
.libraryViewNavLinkContent {
border-bottom: 5px solid transparent;
display: inline-block;
padding: 2px 1em 11px;
color: #ddd;
padding: 2px 15px 2px 17px;
}
.libraryViewNav a+a .libraryViewNavLinkContent {
border-left: 1px solid #333;
position: relative;
left: -2px;
}
@media all and (max-width: 500px) {

View file

@ -30,7 +30,6 @@
background-image: linear-gradient(top,#444,#313131);
color: #fff;
font-size: 12px;
font-family: "Open Sans";
font-weight: normal;
}

View file

@ -283,13 +283,6 @@
top: 42%;
}
@media all and (max-width: 600px) {
.packageReviewText {
display: none;
}
}
@media all and (max-width: 1200px) {
.portraitPosterItem .posterItemOverlayInner {
@ -506,3 +499,8 @@
height: 240px;
}
}
.scalableItem {
}

View file

@ -53,6 +53,12 @@
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/RobotoMedium.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/RobotoBold.woff) format('woff');
}
* {
text-shadow: none!important;
@ -61,7 +67,7 @@
body {
overflow-y: scroll!important;
font-size: 13px;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-family: Roboto, Arial, Helvetica, sans-serif;
}
.bodyWithPopupOpen {
@ -83,7 +89,7 @@ h1, h1 a {
}
.ui-loader h1 {
font-family: 'Open Sans';
font-family: Roboto;
font-weight: bold!important;
font-size: 18px;
}
@ -105,6 +111,15 @@ h2 {
font-weight: bold;
}*/
.ui-btn {
font-family: Roboto;
font-weight: 500!important;
}
.ui-listview li h3 {
font-weight: 500;
}
h1 a {
text-decoration: none;
}
@ -217,7 +232,7 @@ h1 .imageLink {
.pageTitle {
margin-top: 0;
font-family: "Open Sans";
font-family: Roboto;
}
.imageButton {
@ -276,12 +291,10 @@ h1 .imageLink {
.content-secondary {
z-index: 1000;
background: #333;
border: 0;
border-right: 1px solid #ddd;
display: none;
text-align: left;
width: 25%;
width: 220px;
position: fixed;
top: 51px;
left: 0;
@ -289,25 +302,25 @@ h1 .imageLink {
margin: 0;
}
.content-secondary h1 {
margin: 0;
padding: 20px 0 25px 20px;
color: #fff;
}
.sidebarLinks {
margin-top: 2.75em;
margin-left: 1em;
}
.sidebarLinks a {
display: block;
padding: .6em 20px .6em 20px;
text-decoration: none;
color: #eee!important;
color: #333!important;
text-shadow: none!important;
font-weight: 400!important;
font-weight: 500!important;
font-size: 14px;
border-radius: 2px;
}
.sidebarLinks a:hover {
background: #f2f2f2;
color: #000!important;
background: #52B54B;
color: #fff!important;
}
.sidebarLinks a.selectedSidebarLink {
@ -318,7 +331,7 @@ h1 .imageLink {
.sidebarDivider {
height: 1px;
background: #444;
background: #ddd;
margin: .25em 0;
}
@ -341,21 +354,21 @@ h1 .imageLink {
.dashboardPanelDivider {
height: 1px;
background: #444;
background: #ddd;
margin: .25em 0;
}
.dashboardPanelLink {
padding: .6em .5em .6em 1.25em;
padding: .7em .5em .7em 1.25em;
display: block;
text-decoration: none;
color: #fff!important;
color: #000!important;
font-weight: normal !important;
}
.dashboardPanelLink:hover {
background: #f2f2f2;
color: #000!important;
background: #52B54B;
color: #fff!important;
}
.selectedDashboardPanelLink {
@ -367,10 +380,6 @@ h1 .imageLink {
padding: 0;
}
.dashboardPanel {
background: #262626!important;
}
.appLinks a {
margin: 0 2px;
}
@ -427,10 +436,8 @@ h1 .imageLink {
}
.content-primary {
width: 65%;
float: right;
padding: 80px 6% 3em 0;
margin: 0;
padding: 80px 0 3em 0;
margin: 0 0 0 270px;
}
.content-primary ul:first-child {
@ -445,42 +452,6 @@ h1 .imageLink {
}
}
@media all and (min-width: 1200px) {
.content-secondary {
width: 20%;
}
.content-primary {
width: 70%;
}
}
@media all and (min-width: 1440px) {
.content-secondary {
width: 17%;
}
.content-primary {
width: 74%;
}
}
@media all and (min-width: 1920px) {
.content-secondary {
width: 20%;
}
.content-primary {
width: 71%;
}
}
/*
Media Library Page
*/
@ -881,11 +852,7 @@ progress {
}
.activeSession {
display: inline-block;
position: relative;
margin: 4px;
width: 275px;
height: 154.6875px;
width: 50%;
}
.sessionNowPlayingContent {
@ -979,12 +946,6 @@ progress {
bottom: 0;
}
.activeSession:hover {
-moz-box-shadow: 0 0 10px 3px #38c;
-webkit-box-shadow: 0 0 10px 3px #38c;
box-shadow: 0 0 10px 3px #38c;
}
.sessionNowPlayingTime {
color: #fff;
position: absolute;
@ -1042,21 +1003,8 @@ progress {
background-image: -o-linear-gradient( center bottom, rgb(221, 73, 25) 37%, rgb(221, 73, 25) 69% )!important;
}
@media all and (max-width: 1000px) {
.activeSession {
width: 230px;
height: 129.375px;
}
}
@media all and (max-width: 550px) {
.activeSession {
width: 210px;
height: 118.125px;
}
.sessionAppName {
max-width: 160px;
}
@ -1064,20 +1012,11 @@ progress {
@media all and (max-width: 500px) {
.activeSession {
width: 200px;
height: 112.5px;
}
.sessionAppName {
max-width: 150px;
}
}
@media all and (max-width: 400px) {
.activeSession {
width: 250px;
height: 140.625px;
width: 100%;
}
}
}