[UI] Fixed issue where certain form element would be on top the left panel
This commit is contained in:
parent
d9b48d33b6
commit
54bade96ad
|
@ -159,3 +159,12 @@ b {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* left panel z-index fix */
|
||||||
|
.form {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
|
@ -154,3 +154,12 @@ b {
|
||||||
stroke: currentColor;
|
stroke: currentColor;
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* left panel z-index fix */
|
||||||
|
.form {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
|
@ -72,7 +72,7 @@
|
||||||
|
|
||||||
{% block nav %}{% endblock %}
|
{% block nav %}{% endblock %}
|
||||||
{% block body %}{% endblock %}
|
{% block body %}{% endblock %}
|
||||||
{% block javascripts %}{% endblock %}
|
{% block javascripts %}{% endblock javascripts%}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -23,4 +23,4 @@
|
||||||
|
|
||||||
{% block javascripts %}
|
{% block javascripts %}
|
||||||
<script type="text/javascript" src="{{ asset('assets/javascript/cropping.js') }}"></script>
|
<script type="text/javascript" src="{{ asset('assets/javascript/cropping.js') }}"></script>
|
||||||
{% endblock %}
|
{% endblock javascripts %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user