From 231fbaba37495630dddb63b1ac6ef62bc861df0c Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 28 Oct 2014 16:26:43 +0100 Subject: [PATCH] Let wizard buttons have some bottom margin Makes them more notable in case they'll get pushed to the very bottom of the page. refs #7163 --- public/css/icinga/setup.less | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/public/css/icinga/setup.less b/public/css/icinga/setup.less index b64bcfe77..f3bee2cda 100644 --- a/public/css/icinga/setup.less +++ b/public/css/icinga/setup.less @@ -98,7 +98,7 @@ } #setup div.buttons { - margin-top: 1.5em; + margin: 1.5em 0; .double { position: absolute; @@ -314,13 +314,17 @@ border-radius: 1em; background-color: #f4f4f4; - div.buttons button[type=submit] { - padding: 0.5em; - line-height: 0.5em; - background-color: #888; + div.buttons { + margin: 1.5em 0 0; - &:hover, &:focus, &:active { - background-color: #666; + button[type=submit] { + padding: 0.5em; + line-height: 0.5em; + background-color: #888; + + &:hover, &:focus, &:active { + background-color: #666; + } } } }