From 0198900b125b9f09800e9699d5242a4e01b6fa7f 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 d7fb573d6b..9ce5d7ed48 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 {