From 28ce1329dbfa059fb3a338da761d7193a3010a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 3 Mar 2015 17:31:44 +0100 Subject: [PATCH] Bug 13680 - Make form on edit items page more compact and better readable This patch makes the form on the edit items page more compact by decreasing the label font and indenting properly if a laberl has multiple rows. Additionally, a thin white line helps the eye to connect a label with the appropriate field. It is just a proposition regardless whether the form will be displayed above or below the items table. --- koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css b/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css index dfd36f5..4bc8aa9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css @@ -103,12 +103,16 @@ a.tagnum { } #cataloguing_additem_newitem fieldset.rows label, #cataloguing_additem_newitem fieldset.rows span.label { - font-size : 100%; - width : 25%; + font-size : 90%; + width : 30%; + border-top: 1px solid #ffffff; + text-indent: -1.7em; + margin-left: 2em; + margin-right: 0; } #cataloguing_additem_newitem fieldset.rows li { - padding-bottom : 3px; + padding-bottom : 1px; } #cataloguing_additem_newitem .input_marceditor { width : auto; @@ -170,4 +174,4 @@ tr.active.highlight td { position: absolute; top: 50%; width: 15em; -} \ No newline at end of file +} -- 1.7.10.4