mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update forms
This commit is contained in:
parent
b14198727b
commit
e0d2a9298b
6 changed files with 11 additions and 7 deletions
|
@ -999,7 +999,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
var overlayButtons = '';
|
var overlayButtons = '';
|
||||||
if (layoutManager.mobile) {
|
if (!layoutManager.tv) {
|
||||||
|
|
||||||
var overlayPlayButton = options.overlayPlayButton;
|
var overlayPlayButton = options.overlayPlayButton;
|
||||||
|
|
||||||
|
|
|
@ -28,8 +28,12 @@
|
||||||
padding-top: .5em;
|
padding-top: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.formDialog .dialogContentInner {
|
||||||
|
padding-bottom: 20vh;
|
||||||
|
}
|
||||||
|
|
||||||
.layout-tv .formDialog .dialogContentInner {
|
.layout-tv .formDialog .dialogContentInner {
|
||||||
padding-bottom: 50vh;
|
padding-bottom: 40vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.formDialog .centeredContent {
|
.formDialog .centeredContent {
|
||||||
|
|
|
@ -218,7 +218,7 @@
|
||||||
showOverlayTimeout = setTimeout(function () {
|
showOverlayTimeout = setTimeout(function () {
|
||||||
onShowTimerExpired(card);
|
onShowTimerExpired(card);
|
||||||
|
|
||||||
}, 800);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
function preventTouchHover() {
|
function preventTouchHover() {
|
||||||
|
|
|
@ -1522,7 +1522,7 @@
|
||||||
page.querySelector('#themeSongsCollapsible').classList.remove('hide');
|
page.querySelector('#themeSongsCollapsible').classList.remove('hide');
|
||||||
|
|
||||||
var html = listView.getListViewHtml({
|
var html = listView.getListViewHtml({
|
||||||
items: result.Items,
|
items: items,
|
||||||
sortBy: query.SortBy
|
sortBy: query.SortBy
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -2862,7 +2862,7 @@ var AppInfo = {};
|
||||||
navigator.serviceWorker.register('serviceworker.js');
|
navigator.serviceWorker.register('serviceworker.js');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (window.Notification || navigator.serviceWorker) {
|
if (window.Notification) {
|
||||||
postInitDependencies.push('bower_components/emby-webcomponents/notifications/notifications');
|
postInitDependencies.push('bower_components/emby-webcomponents/notifications/notifications');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
define(['jQuery', 'paper-icon-button-light'], function ($) {
|
define(['jQuery', 'paper-icon-button-light', 'cardStyle'], function ($) {
|
||||||
|
|
||||||
function cancelJob(page, id) {
|
function cancelJob(page, id) {
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
html += "<div class='card squareCard' data-id='" + job.Id + "' data-status='" + job.Status + "'>";
|
html += "<div class='card squareCard scalableCard' data-id='" + job.Id + "' data-status='" + job.Status + "'>";
|
||||||
|
|
||||||
html += '<div class="' + cardBoxCssClass + '">';
|
html += '<div class="' + cardBoxCssClass + '">';
|
||||||
html += '<div class="cardScalable">';
|
html += '<div class="cardScalable">';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue