diff --git a/InvenTree/static/css/inventree.css b/InvenTree/static/css/inventree.css index d007287f89..823d6abe36 100644 --- a/InvenTree/static/css/inventree.css +++ b/InvenTree/static/css/inventree.css @@ -56,6 +56,7 @@ .modal { overflow: hidden; + z-index: 99999999; } .modal-content h3 { @@ -89,4 +90,19 @@ .help-inline { color: #A11; +} + +.notification-area { + position: fixed; + z-index: 999999; + top: 0px; + margin-top: 20px; + width: 100%; + padding: 20px; +} + +.alert { + display: none; + border-radius: 5px; + opacity: 0.9; } \ No newline at end of file diff --git a/InvenTree/templates/modal_csrf.html b/InvenTree/templates/modal_csrf.html new file mode 100644 index 0000000000..3bce88c0aa --- /dev/null +++ b/InvenTree/templates/modal_csrf.html @@ -0,0 +1,3 @@ +
+ {% csrf_token %} +
\ No newline at end of file