[UI] Fixed issue where certain form element would be on top the left panel

This commit is contained in:
rainydaysavings 2020-08-05 22:25:18 +01:00 committed by Hugo Sales
parent d9b48d33b6
commit 54bade96ad
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
4 changed files with 20 additions and 2 deletions

View File

@ -158,4 +158,13 @@ b {
stroke: currentColor;
fill: currentColor;
align-self: center;
}
/* left panel z-index fix */
.form {
position: relative;
z-index: 0;
}
#header {
z-index: 1;
}

View File

@ -153,4 +153,13 @@ b {
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
/* left panel z-index fix */
.form {
position: relative;
z-index: 0;
}
#header {
z-index: 1;
}

View File

@ -72,7 +72,7 @@
{% block nav %}{% endblock %}
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
{% block javascripts %}{% endblock javascripts%}
</div>
</body>
</html>

View File

@ -23,4 +23,4 @@
{% block javascripts %}
<script type="text/javascript" src="{{ asset('assets/javascript/cropping.js') }}"></script>
{% endblock %}
{% endblock javascripts %}