Commit b1412aa5 authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

Merge branch 'master' into 'Mlab-366'

# Conflicts:
#   js/headfoot.js
parents 99e7169c 0cf20bc1
This commit is part of merge request !70. Comments created here will be created in the context of that merge request.
File mode changed from 100644 to 100755
.button-red{
background-color: #E0001B;
}
.button-margin{
margin: 20pt;
}
\ No newline at end of file
...@@ -48,18 +48,6 @@ function head() { ...@@ -48,18 +48,6 @@ function head() {
navheader.id = "header"; navheader.id = "header";
navheader.classList.add("clear"); navheader.classList.add("clear");
// disclaimer
let alertdiv = document.createElement("div");
alertdiv.classList.add("alert", "alert-danger", "alert-dismissible", "fade", "show");
alertdiv.style = "text-align:center;";
alertdiv.innerHTML="<strong>Disclaimer</strong> This website is under construction and in prototype-phase. It is not for public use."
let alertbutton = document.createElement("button");
alertbutton.type = "button";
alertbutton.classList.add("close");
alertbutton.setAttribute("data-dismiss", "alert");
alertbutton.innerHTML = "&times;";
prependChild(alertdiv, alertbutton);
// navigation header // navigation header
let navbar = document.createElement("nav"); let navbar = document.createElement("nav");
navbar.classList.add("navbar", "navbar-expand-md", "navbar-light"); navbar.classList.add("navbar", "navbar-expand-md", "navbar-light");
...@@ -133,7 +121,6 @@ function head() { ...@@ -133,7 +121,6 @@ function head() {
navbarcontainer.appendChild(navelements); navbarcontainer.appendChild(navelements);
navbar.appendChild(navbarcontainer) navbar.appendChild(navbarcontainer)
navheader.appendChild(alertdiv);
navheader.appendChild(navbar); navheader.appendChild(navbar);
prependChild(document.body, navheader); prependChild(document.body, navheader);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment