Skip to content

Commit

Permalink
Fix z-order of upgrade dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulp committed Sep 21, 2018
1 parent 6b14636 commit 362d9ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion www/common/menuHead.inc
Expand Up @@ -11,7 +11,7 @@

<!-- finally FPP stuff, here so our CSS is last so we can override anything above -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/fpp.css" />
<link rel="stylesheet" href="css/fpp.css?ref=<?php echo filemtime('css/fpp.css'); ?>" />
<script type="text/javascript" src="js/fpp.js?ref=<?php echo filemtime('js/fpp.js'); ?>"></script>

<!-- menu -->
Expand Down
5 changes: 5 additions & 0 deletions www/css/fpp.css
Expand Up @@ -149,6 +149,11 @@
{
z-index: 1001;
}
.ui-dialog
{
z-index: 10000;
}


.settings
{
Expand Down
2 changes: 1 addition & 1 deletion www/js/fpp.js
Expand Up @@ -784,7 +784,7 @@ function RemovePlaylistEntry() {
).done(function(data) {
$('#helpText').html(
"<center><input onClick='UpgradeFPPVersion(\"" + version + "\");' type='button' class='buttons' value='Upgrade'></center>" +
"<pre>" + data + "</pre>"
"<pre style='white-space: pre-wrap; word-wrap: break-word;'>" + data + "</pre>"
);
}).fail(function() {
$('#helpText').html("Error loading release notes.");
Expand Down

0 comments on commit 362d9ec

Please sign in to comment.