From b0a4ac8d1244bec999423322c7685ecc97fb2a4b Mon Sep 17 00:00:00 2001 From: Johannes Rauh Date: Tue, 5 Aug 2025 14:08:19 +0200 Subject: [PATCH] Break the group names and display names Break the names and display names of host and service groups instead cutting them off. --- public/css/item/hostgroup.less | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/public/css/item/hostgroup.less b/public/css/item/hostgroup.less index 7a4d66175..108ac9fcf 100644 --- a/public/css/item/hostgroup.less +++ b/public/css/item/hostgroup.less @@ -4,10 +4,17 @@ align-content: center; // Actually, not sure why this works… .col is not a grid container } - > .main > .caption { - height: auto; - .text-ellipsis(); - .line-clamp("reset"); + > .main { + > .caption { + height: auto; + white-space: normal; + word-break: break-word; + } + + > header > .title > .subject { + white-space: normal; + word-break: break-word; + } } }