GUACAMOLE-723: Apply ellipsis when connection name overflows available space, regardless of whether the connection selection menu is used.

This commit is contained in:
Michael Jumper
2019-06-15 18:21:23 -07:00
parent a084ad41de
commit e351b355a5
2 changed files with 11 additions and 0 deletions

View File

@@ -17,6 +17,10 @@
* under the License.
*/
#guac-menu .header h2.connection-select-menu {
overflow: visible;
}
.connection-select-menu {
padding: 0;
min-width: 0;

View File

@@ -65,6 +65,13 @@
margin-top: 1em;
}
#guac-menu .header h2 {
white-space: nowrap;
overflow: hidden;
width: 100%;
text-overflow: ellipsis;
}
#guac-menu #mouse-settings .choice {
text-align: center;
}