mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #350 from sharelatex/pr-fix-overflow-proj-name
Prevent overflowing project names.
This commit is contained in:
commit
92c4c3db69
1 changed files with 4 additions and 0 deletions
|
@ -200,6 +200,10 @@ ul.structured-list {
|
||||||
.select-item + span, .select-all + span {
|
.select-item + span, .select-all + span {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: @line-height-computed * 1.5;
|
padding-left: @line-height-computed * 1.5;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue