From 565a48d36d6b7d07c4e4680f34a97c62436e9ed4 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 18 Oct 2012 08:39:49 -0400 Subject: [PATCH] Extend width of labels in preferences --- UI/WebServerResources/generic.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/UI/WebServerResources/generic.css b/UI/WebServerResources/generic.css index 7817d4fc4..c87b2e6aa 100644 --- a/UI/WebServerResources/generic.css +++ b/UI/WebServerResources/generic.css @@ -830,14 +830,23 @@ dd { } .dl-horizontal dt { float: left; - width: 150px; + width: 225px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } +fieldset .dl-horizontal dt { + width: 150px; +} .dl-horizontal dd { + margin-left: 235px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +fieldset .dl-horizontal dd { margin-left: 160px; }