From 4a10e2d75822efd5c5fe18ee3953875e89621229 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 15 Dec 2015 13:25:15 +0100 Subject: [PATCH] Fix overflow of #login and #guest-error --- public/css/icinga/layout.less | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/public/css/icinga/layout.less b/public/css/icinga/layout.less index 8732c453e..c3fb50669 100644 --- a/public/css/icinga/layout.less +++ b/public/css/icinga/layout.less @@ -1,8 +1,17 @@ /*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */ +#footer { + position: fixed; + left: 0; + right: 0; + bottom: 0; + z-index: 999; +} + #guest-error { background-color: @icinga-blue; height: 100%; + overflow: auto; } #guest-error #icinga-logo { @@ -15,14 +24,6 @@ font-size: 2em; } -#footer { - position: fixed; - left: 0; - right: 0; - bottom: 0; - z-index: 999; -} - #header, #main > .container, #menu { @@ -34,12 +35,6 @@ background-color: @icinga-blue; } -#layout { - background-color: @body-bg-color; - color: @text-color; - font-family: @font-family; -} - #header-logo-container { height: 4em; margin-left: 1.5em; @@ -67,6 +62,16 @@ width: 100%; } +#layout { + background-color: @body-bg-color; + color: @text-color; + font-family: @font-family; +} + +#login { + overflow: auto; +} + #sidebar { background-color: @gray-lighter; }