From 818ac35e2248e04bcf17bcb8883a3890e70cc524 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 14 Nov 2014 21:45:39 +0100 Subject: [PATCH] css/layout-structure: fix broken columns There is a border right now, changed box model to avoid influence on container width --- public/css/icinga/layout-structure.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/css/icinga/layout-structure.less b/public/css/icinga/layout-structure.less index 9e9ffc932..907898d95 100644 --- a/public/css/icinga/layout-structure.less +++ b/public/css/icinga/layout-structure.less @@ -94,6 +94,9 @@ html { /* tmp */ #main > .container { + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; width: 100%; height: 100%; overflow: auto; @@ -101,7 +104,7 @@ html { } #layout.twocols #main > .container { - width: 49%; + width: 50%; }