Skip to content

Commit ecb19bc

Browse files
committed
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.
1 parent 1c6c208 commit ecb19bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

skins/elastic/styles/widgets/lists.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,14 @@ ul.listing {
151151
}
152152

153153
li {
154-
.overflow-ellipsis();
155154
white-space: nowrap;
156155
position: relative;
157156
list-style: none;
158157

158+
a {
159+
.overflow-ellipsis();
160+
}
161+
159162
ul {
160163
min-height: 1.5rem;
161164
padding-left: 1.5em;

0 commit comments

Comments
 (0)