From 4a27beabddd506c2b43b0cacfad42d8443176394 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 19 Nov 2015 09:46:07 -0500 Subject: [PATCH] (css) Limit toolbar buttons min/max width --- NEWS | 2 +- UI/WebServerResources/generic.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index b88ce7c0d..397c1c391 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ New features - Enhancements - - + - limit the maximum width of toolbar buttons Bug fixes diff --git a/UI/WebServerResources/generic.css b/UI/WebServerResources/generic.css index 63b28075d..4f75ed85c 100644 --- a/UI/WebServerResources/generic.css +++ b/UI/WebServerResources/generic.css @@ -1123,6 +1123,11 @@ A.toolbarButton:hover SPAN { line-height: 13px; padding: 5px 2px 5px 5px; cursor: pointer; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + min-width: 50px; + max-width: 100px; } A.smallToolbarButton SPAN,