From bacfaaa8eca1a8ba83da7212740fd575d45d490e Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Fri, 25 Jul 2025 15:51:30 +0200 Subject: [PATCH] Fix showing descendent elements beyond the borders of the li parent Now a possible element overflow is hidden on the link element, not the li element. Without this, a child element (from a sub-list) would be invisible if dragged outside of the li element. --- skins/elastic/styles/widgets/lists.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skins/elastic/styles/widgets/lists.less b/skins/elastic/styles/widgets/lists.less index e43e5c492..da495e1c7 100644 --- a/skins/elastic/styles/widgets/lists.less +++ b/skins/elastic/styles/widgets/lists.less @@ -151,11 +151,14 @@ ul.listing { } li { - .overflow-ellipsis(); white-space: nowrap; position: relative; list-style: none; + a { + .overflow-ellipsis(); + } + ul { min-height: 1.5rem; padding-left: 1.5em;