Skip to content
Snippets Groups Projects
Unverified Commit a17bcb9d authored by Lars Kiesow's avatar Lars Kiesow Committed by GitHub
Browse files

Fix broken UI on long filenames (#2215)

If you select a presentation with a very long filename in in Greenlight,
the filename text in the upload dialog wraps at the end and leaves the
label box, leading to a slightly broken looking user interface.

This patch adjusts the style to hide the end of a long filename, ending
with a horizontal ellipsis instead.
parent 7c57f4b9
No related branches found
No related tags found
No related merge requests found
......@@ -126,3 +126,10 @@
.create-room-button {
width: 49%;
}
#presentation-upload-label {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-right: 75px;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment