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:
parent
b1676387f4
commit
e88f66812d
6 changed files with 7 additions and 8 deletions
|
@ -367,7 +367,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center 15%;
|
background-position: center 15%;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
height: 620px;
|
height: 640px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.viewMenuBar .material-icons, .viewMenuBar .fa, .viewMenuBar paper-icon-button {
|
.viewMenuBar .material-icons, .viewMenuBar .fa, .viewMenuBar paper-icon-button {
|
||||||
color: #f0f0f0;
|
color: #fff;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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>
|
<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;">
|
<div class="connectButtons" style="display:none;">
|
||||||
<br />
|
|
||||||
<a href="selectserver.html" class="clearLink">
|
<a href="selectserver.html" class="clearLink">
|
||||||
<paper-button raised class="cancel block"><iron-icon icon="settings"></iron-icon><span>${ButtonChangeServer}</span></paper-button>
|
<paper-button raised class="cancel block"><iron-icon icon="settings"></iron-icon><span>${ButtonChangeServer}</span></paper-button>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -557,7 +557,7 @@
|
||||||
|
|
||||||
$('.btnPlay', page).on('click', function () {
|
$('.btnPlay', page).on('click', function () {
|
||||||
var userdata = currentItem.UserData || {};
|
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) {
|
$('.itemsContainer', page).on('playallfromhere', function (e, index) {
|
||||||
|
|
|
@ -1588,7 +1588,7 @@
|
||||||
mediaType = "Audio";
|
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 () {
|
$('.btnPlayTrailer', page).on('click', function () {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
.viewMenuBar, .libraryViewNav {
|
.viewMenuBar, .libraryViewNav {
|
||||||
background-color: #181818;
|
background-color: #191919;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-page-theme-b {
|
.ui-page-theme-b {
|
||||||
background-color: #282828;
|
background-color: #292929;
|
||||||
}
|
}
|
||||||
|
|
||||||
.backdropPage.ui-page-theme-b {
|
.backdropPage.ui-page-theme-b {
|
||||||
|
@ -12,4 +12,4 @@
|
||||||
|
|
||||||
.defaultBackground .cardImage {
|
.defaultBackground .cardImage {
|
||||||
background-color: #383838;
|
background-color: #383838;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue