Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-02-22 22:08:32 +0300
committernachoparker <nacho@ownyourbits.com>2018-02-22 23:11:36 +0300
commitd05b06996155c96f0beb886fdea16d52bd65fa50 (patch)
tree8f7cc74e797a84de8adf53a47092823e36d98041
parent0d6ad682b7595327f8052330cded8c4404e69a98 (diff)
ncp-web: fix overlay z-indexv0.46.29
-rw-r--r--changelog.md4
-rw-r--r--ncp-web/index.php2
-rw-r--r--ncp-web/ncp.css4
3 files changed, 6 insertions, 4 deletions
diff --git a/changelog.md b/changelog.md
index 444eb296..6d055773 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v0.46.28](https://github.com/nextcloud/nextcloudpi/commit/018c241) (2018-02-22) wizard: fix logbox overflow
+[v0.46.29](https://github.com/nextcloud/nextcloudpi/commit/1804c51) (2018-02-22) ncp-web: fix overlay z-index
+
+[v0.46.28](https://github.com/nextcloud/nextcloudpi/commit/c78cf60) (2018-02-22) wizard: fix logbox overflow
[v0.46.27](https://github.com/nextcloud/nextcloudpi/commit/7a68af0) (2018-02-20) wizard: animate side logs
diff --git a/ncp-web/index.php b/ncp-web/index.php
index 08972441..52ce02c8 100644
--- a/ncp-web/index.php
+++ b/ncp-web/index.php
@@ -112,9 +112,9 @@ HTML;
</div>
</header>
- <div id='overlay' class="hidden"></div>
<div id="content-wrapper">
<div id="content" class="app-files" role="main">
+ <div id='overlay' class="hidden"></div>
<div id="app-navigation">
<ul id="ncp-options">
<?php
diff --git a/ncp-web/ncp.css b/ncp-web/ncp.css
index 4b2980a4..97ac4b23 100644
--- a/ncp-web/ncp.css
+++ b/ncp-web/ncp.css
@@ -339,7 +339,7 @@ input[type='checkbox'].checkbox--white:indeterminate:disabled + label:after,inpu
top:0;
left:0;
right:0;
- z-index:2000;
+ z-index:5000;
height:45px;
background-color:#0082c9;
box-sizing:border-box;
@@ -590,7 +590,7 @@ kbd {
border-right:1px solid #ebebeb;
display:flex;
flex-direction:column;
- z-index: 2000;
+ z-index: 3000;
}
#app-navigation > ul {
position:relative;