Merge pull request #350 from sharelatex/pr-fix-overflow-proj-name

Prevent overflowing project names.
This commit is contained in:
Paulo Jorge Reis 2016-10-25 14:31:33 +01:00 committed by GitHub
commit 92c4c3db69

View file

@ -200,6 +200,10 @@ ul.structured-list {
.select-item + span, .select-all + span {
display: inline-block;
padding-left: @line-height-computed * 1.5;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
}
}
}