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

ellipsize long group names in select2 dropdown, fix #16977
This commit is contained in:
Thomas Müller 2015-10-20 11:06:18 +02:00
commit 50cb8106dc

View file

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