From 4659e31a24f2c860ae1a5a1e7dde497650aaa741 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Fri, 9 Dec 2011 11:09:24 -0500 Subject: [PATCH] TPAC: Use padding instead of explicit width for tabs Explicit widths work well for a combination of a specific font sizes and a known string; however, in the context of translation, strings may get longer than the explicit width allows. Using padding gives us more flexibility to accommodate different font sizes and variable length strings; the uniformity of the tab size will be sacrificed but perhaps that is not such a bad thing. Signed-off-by: Dan Scott --- Open-ILS/web/css/skin/default/opac/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/css/skin/default/opac/style.css b/Open-ILS/web/css/skin/default/opac/style.css index eda87775d1..a52fe3db88 100644 --- a/Open-ILS/web/css/skin/default/opac/style.css +++ b/Open-ILS/web/css/skin/default/opac/style.css @@ -283,7 +283,7 @@ span.dash_divider { } #adv_search_tabs a, #acct_tabs a, #acct_fines_tabs a { - width:156px; + padding: 1em 1em 0.5em; } #adv_search.on, #num_search.on, #expert_search.on { -- 2.11.0