Fix overflow of #login and #guest-error

This commit is contained in:
Eric Lippmann 2015-12-15 13:25:15 +01:00
parent fc4458857f
commit 4a10e2d758

View File

@ -1,8 +1,17 @@
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */ /*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
#footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
}
#guest-error { #guest-error {
background-color: @icinga-blue; background-color: @icinga-blue;
height: 100%; height: 100%;
overflow: auto;
} }
#guest-error #icinga-logo { #guest-error #icinga-logo {
@ -15,14 +24,6 @@
font-size: 2em; font-size: 2em;
} }
#footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
}
#header, #header,
#main > .container, #main > .container,
#menu { #menu {
@ -34,12 +35,6 @@
background-color: @icinga-blue; background-color: @icinga-blue;
} }
#layout {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
}
#header-logo-container { #header-logo-container {
height: 4em; height: 4em;
margin-left: 1.5em; margin-left: 1.5em;
@ -67,6 +62,16 @@
width: 100%; width: 100%;
} }
#layout {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
}
#login {
overflow: auto;
}
#sidebar { #sidebar {
background-color: @gray-lighter; background-color: @gray-lighter;
} }