[Koha-patches] [PATCH] Bug 9385 - patron add labels right aligned in chrome

Owen Leonard oleonard at myacpl.org
Mon Feb 11 18:27:43 CET 2013


The <legend> element has been given right alignment which seems to only
be respected by WebKit-based browsers. Users of Chrome and Safari see a
right-aligned legend while others see a left-aligned one. Given that the
legend is often applied to fieldsets spanning much of the screen it
seems wiser to have them left-aligned.

This patch removes "text-align:right" from the CSS so that <legend> will
inherit the default left alignment. To test, view any page with a legend
element, for instance the patron add form. In Firefox, Chrome, Safari,
IE, etc. the legend ("Patron identity," "Main address," etc.) should be
left-aligned in the fieldset.
---
 .../intranet-tmpl/prog/en/css/staff-global.css     |    1 -
 1 file changed, 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
index 1a3e563..8154304 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
+++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
@@ -327,7 +327,6 @@ legend {
     border:2px solid #b9d8d9;
     background-color:#ffffff;
     border-radius:3px;
-    text-align:right;
     padding: 0.2em 0.5em;
 }
 
-- 
1.7.9.5


More information about the Koha-patches mailing list