mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fixes #987 - Support custom css
This commit is contained in:
parent
22c701d9a9
commit
bed14f4b40
@ -1031,7 +1031,7 @@ h1 + .accentButton {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dashboardFooter {
|
.dashboardFooter {
|
||||||
margin-top: 70px;
|
margin-top: 50px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,6 +64,11 @@
|
|||||||
<input id="txtLoginDisclaimer" type="text" />
|
<input id="txtLoginDisclaimer" type="text" />
|
||||||
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
|
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="txtCustomCss">${LabelCustomCss}</label>
|
||||||
|
<textarea id="txtCustomCss" style="font-family:monospace;height:200px!important;"></textarea>
|
||||||
|
<div class="fieldDescription">${LabelCustomCssHelp}</div>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
(function ($, document, window) {
|
(function ($, document, window) {
|
||||||
|
|
||||||
var brandingConfigKey = "branding";
|
var brandingConfigKey = "branding";
|
||||||
|
var currentBrandingOptions;
|
||||||
|
|
||||||
function loadPage(page, config, languageOptions) {
|
function loadPage(page, config, languageOptions) {
|
||||||
|
|
||||||
@ -49,7 +50,10 @@
|
|||||||
|
|
||||||
ApiClient.getNamedConfiguration(brandingConfigKey).done(function (config) {
|
ApiClient.getNamedConfiguration(brandingConfigKey).done(function (config) {
|
||||||
|
|
||||||
|
currentBrandingOptions = config;
|
||||||
|
|
||||||
$('#txtLoginDisclaimer', page).val(config.LoginDisclaimer || '');
|
$('#txtLoginDisclaimer', page).val(config.LoginDisclaimer || '');
|
||||||
|
$('#txtCustomCss', page).val(config.CustomCss || '');
|
||||||
});
|
});
|
||||||
|
|
||||||
}).on('pageinit', "#dashboardGeneralPage", function () {
|
}).on('pageinit', "#dashboardGeneralPage", function () {
|
||||||
@ -99,8 +103,15 @@
|
|||||||
ApiClient.getNamedConfiguration(brandingConfigKey).done(function (brandingConfig) {
|
ApiClient.getNamedConfiguration(brandingConfigKey).done(function (brandingConfig) {
|
||||||
|
|
||||||
brandingConfig.LoginDisclaimer = $('#txtLoginDisclaimer', form).val();
|
brandingConfig.LoginDisclaimer = $('#txtLoginDisclaimer', form).val();
|
||||||
|
brandingConfig.CustomCss = $('#txtCustomCss', form).val();
|
||||||
|
|
||||||
|
var cssChanged = currentBrandingOptions && brandingConfig.CustomCss != currentBrandingOptions.CustomCss;
|
||||||
|
|
||||||
ApiClient.updateNamedConfiguration(brandingConfigKey, brandingConfig).done(Dashboard.processServerConfigurationUpdateResult);
|
ApiClient.updateNamedConfiguration(brandingConfigKey, brandingConfig).done(Dashboard.processServerConfigurationUpdateResult);
|
||||||
|
|
||||||
|
if (cssChanged) {
|
||||||
|
Dashboard.showDashboardRefreshNotification();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -798,6 +798,7 @@
|
|||||||
text = "Thank you for supporting Media Browser.";
|
text = "Thank you for supporting Media Browser.";
|
||||||
|
|
||||||
$('.supporterIconContainer', page).html('<a class="imageLink supporterIcon" href="supporter.html" title="' + text + '"><img src="' + imgUrl + '" style="height:32px;vertical-align: middle; margin-right: .5em;" /></a><span style="position:relative;top:2px;text-decoration:none;">' + text + '</span>');
|
$('.supporterIconContainer', page).html('<a class="imageLink supporterIcon" href="supporter.html" title="' + text + '"><img src="' + imgUrl + '" style="height:32px;vertical-align: middle; margin-right: .5em;" /></a><span style="position:relative;top:2px;text-decoration:none;">' + text + '</span>');
|
||||||
|
$('.supporterIconContainer', page).hide();
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
imgUrl = "css/images/supporter/nonsupporterbadge.png";
|
imgUrl = "css/images/supporter/nonsupporterbadge.png";
|
||||||
|
@ -194,6 +194,15 @@ var Dashboard = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
importCss: function (url) {
|
||||||
|
if (document.createStyleSheet) {
|
||||||
|
document.createStyleSheet(url);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$('<link rel="stylesheet" type="text/css" href="' + url + '" />').appendTo('head');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
showError: function (message) {
|
showError: function (message) {
|
||||||
|
|
||||||
$.mobile.loading('show', {
|
$.mobile.loading('show', {
|
||||||
@ -256,7 +265,7 @@ var Dashboard = {
|
|||||||
|
|
||||||
if (Dashboard.initialServerVersion != info.Version) {
|
if (Dashboard.initialServerVersion != info.Version) {
|
||||||
|
|
||||||
Dashboard.showDashboardVersionWarning();
|
Dashboard.showDashboardRefreshNotification();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -329,7 +338,7 @@ var Dashboard = {
|
|||||||
$('#serverRestartWarning').remove();
|
$('#serverRestartWarning').remove();
|
||||||
},
|
},
|
||||||
|
|
||||||
showDashboardVersionWarning: function () {
|
showDashboardRefreshNotification: function () {
|
||||||
|
|
||||||
var html = '<span style="margin-right: 1em;">' + Globalize.translate('MessagePleaseRefreshPage') + '</span>';
|
var html = '<span style="margin-right: 1em;">' + Globalize.translate('MessagePleaseRefreshPage') + '</span>';
|
||||||
|
|
||||||
@ -1331,6 +1340,7 @@ var Dashboard = {
|
|||||||
ConnectionManager.addApiClient(ApiClient, true).fail(Dashboard.logout);
|
ConnectionManager.addApiClient(ApiClient, true).fail(Dashboard.logout);
|
||||||
} else {
|
} else {
|
||||||
Dashboard.logout();
|
Dashboard.logout();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1345,6 +1355,8 @@ var Dashboard = {
|
|||||||
ConnectionManager.addApiClient(ApiClient);
|
ConnectionManager.addApiClient(ApiClient);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Dashboard.importCss(ApiClient.getUrl('Branding/Css'));
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user