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.
This commit is contained in:
Pablo Zmdl
2025-07-25 15:51:30 +02:00
parent 2fe4216542
commit bacfaaa8ec

View File

@@ -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;