From 3c2c79b669555519faa3c4efb208723a7e825f97 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 26 Jul 2022 12:45:00 +0200 Subject: [PATCH] css: Apply `box-sizing:border-box` to all `
` children We have this everywhere else, so it should not be different here. --- public/css/icinga/base.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/css/icinga/base.less b/public/css/icinga/base.less index d7fb573d6..9ce5d7ed4 100644 --- a/public/css/icinga/base.less +++ b/public/css/icinga/base.less @@ -194,6 +194,10 @@ html { box-sizing: border-box; } +details > * { + // children somehow default to content-box no matter the inheritance + box-sizing: border-box; +} *, *:before, *:after {