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

update login page

This commit is contained in:
Luke Pulverenti 2015-06-24 09:21:33 -04:00
parent b1676387f4
commit e88f66812d
6 changed files with 7 additions and 8 deletions

View file

@ -367,7 +367,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
background-size: cover;
background-position: center 15%;
background-repeat: no-repeat;
height: 620px;
height: 640px;
position: relative;
}

View file

@ -28,7 +28,7 @@
}
.viewMenuBar .material-icons, .viewMenuBar .fa, .viewMenuBar paper-icon-button {
color: #f0f0f0;
color: #fff;
vertical-align: middle;
}

View file

@ -41,7 +41,6 @@
<paper-button raised class="cancel block btnForgotPassword" onclick="LoginPage.cancelLogin();"><iron-icon icon="info"></iron-icon><span>${ButtonForgotPassword}</span></paper-button>
<div class="connectButtons" style="display:none;">
<br />
<a href="selectserver.html" class="clearLink">
<paper-button raised class="cancel block"><iron-icon icon="settings"></iron-icon><span>${ButtonChangeServer}</span></paper-button>
</a>

View file

@ -557,7 +557,7 @@
$('.btnPlay', page).on('click', function () {
var userdata = currentItem.UserData || {};
LibraryBrowser.showPlayMenu(null, currentItem.Id, currentItem.Type, false, "Audio", userdata.PlaybackPositionTicks);
LibraryBrowser.showPlayMenu(this, currentItem.Id, currentItem.Type, false, "Audio", userdata.PlaybackPositionTicks);
});
$('.itemsContainer', page).on('playallfromhere', function (e, index) {

View file

@ -1588,7 +1588,7 @@
mediaType = "Audio";
}
LibraryBrowser.showPlayMenu(null, currentItem.Id, currentItem.Type, currentItem.IsFolder, mediaType, userdata.PlaybackPositionTicks);
LibraryBrowser.showPlayMenu(this, currentItem.Id, currentItem.Type, currentItem.IsFolder, mediaType, userdata.PlaybackPositionTicks);
});
$('.btnPlayTrailer', page).on('click', function () {

View file

@ -1,9 +1,9 @@
.viewMenuBar, .libraryViewNav {
background-color: #181818;
background-color: #191919;
}
.ui-page-theme-b {
background-color: #282828;
background-color: #292929;
}
.backdropPage.ui-page-theme-b {
@ -12,4 +12,4 @@
.defaultBackground .cardImage {
background-color: #383838;
}
}