GUACAMOLE-723: Use ellipsis for overflowing connection names within the connection selection menu.

This commit is contained in:
Michael Jumper
2019-06-22 17:47:57 -07:00
parent 8ec139098a
commit 0e33525d7b

View File

@@ -35,6 +35,7 @@
font-size: 0.8em; font-size: 0.8em;
right: auto; right: auto;
left: 0; left: 0;
max-width: 100%;
} }
.connection-select-menu .menu-dropdown .menu-contents .filter input { .connection-select-menu .menu-dropdown .menu-contents .filter input {
@@ -46,3 +47,10 @@
margin-bottom: 0.5em; margin-bottom: 0.5em;
padding: 0; padding: 0;
} }
.connection-select-menu .menu-dropdown .menu-contents .group-list .caption {
display: inline-block;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}