From fdb31db9e39c5eee499010cdd4665967a5104c6c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 5 Mar 2012 12:38:00 -0500 Subject: [PATCH] Bug 7645 - System preferences editor save button obscured by language chooser This patch amends the preferences page's CSS file to add bottom padding to the page container. This gives the bottom- most submit button some breathing room. Markup correction: Adding "row" and "col" attributes to to quiet validation errors. This doesn't affect output at all (dimensions are specified in CSS). To test, open the system preferences page to a tab like OPAC which contains many preferences. At the bottom of the page the last submit button should have about a line's worth of white space below it. Signed-off-by: Julian Maurice --- .../intranet-tmpl/prog/en/css/preferences.css | 4 ++++ .../prog/en/modules/admin/preferences.tt | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css b/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css index d9fde24..262fe11 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css @@ -65,4 +65,8 @@ h3.collapsed { .humanMsg strong { display: block; font-weight: normal; +} + +#yui-main { + margin-bottom:2em; } \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt index d762be7..ed2a964 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt @@ -98,7 +98,7 @@ [% ELSIF ( CHUNK.type_textarea ) %] - + [% ELSIF ( CHUNK.type_languages ) %]
[% FOREACH language IN CHUNK.languages %] -- 1.7.9.1