Skip to content
Snippets Groups Projects
Commit 50cb8106 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #19859 from owncloud/fix-long-groupnames

ellipsize long group names in select2 dropdown, fix #16977
parents 5d9a9e8f 3875ca2d
No related branches found
No related tags found
No related merge requests found
......@@ -57,16 +57,27 @@ td.mountPoint, td.backend { width:160px; }
height: 32px;
padding: 3px;
}
.select2-results .select2-result-label > span {
display: block;
position: relative;
}
.select2-results .select2-result-label .avatardiv {
display:inline-block;
}
.select2-results .select2-result-label .avatardiv + span {
position: absolute;
top: 5px;
margin-left: 10px;
}
.select2-results .select2-result-label .avatardiv[data-type="group"] + span {
vertical-align: top;
top: 6px;
position: relative;
position: absolute;
max-width: 80%;
left: 30px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
#externalStorage .mountOptionsToggle .dropdown {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment