From 709c5566bb5b739bb541a42265253371585ed372 Mon Sep 17 00:00:00 2001 From: David Sevilla Martin <6401250+datitisev@users.noreply.github.com> Date: Mon, 4 Jul 2022 07:16:59 -0400 Subject: [PATCH] fix: overflow notifications group header text with ellipses (#3500) Fixes #3408 --- framework/core/less/forum/NotificationList.less | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/framework/core/less/forum/NotificationList.less b/framework/core/less/forum/NotificationList.less index 081de1b41..cbb9f4657 100644 --- a/framework/core/less/forum/NotificationList.less +++ b/framework/core/less/forum/NotificationList.less @@ -68,14 +68,17 @@ color: var(--heading-color) !important; padding: 8px 16px; white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; display: flex; align-items: center; // Prevent outline overflowing parent .add-keyboard-focus-ring-offset(-1px); + + &, span { + overflow: hidden; + text-overflow: ellipsis; + } } &-badges {