@@ -, +, @@ labels occurences - Have authority records with more than one entry on the 4xx (or 5xx) fields. - Do a search, check "see also:" (or 'used for/see from') appear more than once. - Apply the patch - Reload and check it looks nicer :-D - Repeat for: staff auth search, opac using ccsr, opac using prog - Signoff --- .../intranet-tmpl/prog/en/css/staff-global.css | 6 ++++-- .../en/includes/authorities-search-results.inc | 21 ++++++++++---------- koha-tmpl/opac-tmpl/ccsr/en/css/opac.css | 6 ++++-- koha-tmpl/opac-tmpl/prog/en/css/opac.css | 6 ++++-- .../en/includes/authorities-search-results.inc | 21 ++++++++++---------- 5 files changed, 32 insertions(+), 28 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -2258,11 +2258,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { +.seefrom, .seealso { font-style: italic; + text-indent: 2em; } #authfinderops { --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -14,13 +14,6 @@ RT: [% heading | html %] [% END %] [% ELSE %] - - [% IF ( type=='seefrom' ) %] - used for/see from: - [% ELSIF ( type=='seealso' ) %] - see also: - [% END %] - [% IF ( type=='seealso' ) %] [% IF ( authid ) %] @@ -83,9 +76,11 @@ [% END %] [% ELSE %] - [% IF ( summary.seefrom ) %] + [% IF ( summary.seefrom.size > 1 ) %] +
+ used for/see from: [% FOREACH seefro IN summary.seefrom %] -
+
[% PROCESS showreference heading=seefro.heading type=seefro.type @@ -93,10 +88,13 @@ %]
[% END %] +
[% END %] - [% IF ( summary.seealso ) %] + [% IF ( summary.seealso.size > 1 ) %] +
+ see also: [% FOREACH seeals IN summary.seealso %] -
+
[% PROCESS showreference heading=seeals.heading type=seeals.type @@ -104,6 +102,7 @@ %]
[% END %] +
[% END %] [% END %] [% END %] --- a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css +++ a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css @@ -2640,11 +2640,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { +.seefrom, .seealso { font-style: italic; + text-indent: 2em; } .authstanza { --- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css +++ a/koha-tmpl/opac-tmpl/prog/en/css/opac.css @@ -2779,11 +2779,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { +.seefrom, .seealso { font-style: italic; + text-indent: 2em; } .authstanza { --- a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc +++ a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc @@ -13,13 +13,6 @@ RT: [% heading | html %] [% END %] [% ELSE %] - - [% IF ( type=='seefrom' ) %] - used for/see from: - [% ELSIF ( type=='seealso' ) %] - see also: - [% END %] - [% IF ( type=='seealso' ) %] [% IF ( authid ) %] @@ -82,19 +75,24 @@
[% END %] [% ELSE %] - [% IF ( summary.seefrom ) %] + [% IF ( summary.seefrom.size > 1 ) %] +
+ used for/see from: [% FOREACH seefro IN summary.seefrom %] -
+
[% PROCESS showreference heading=seefro.heading type=seefro.type %]
[% END %] +
[% END %] - [% IF ( summary.seealso ) %] + [% IF ( summary.seealso.size > 1 ) %] +
+ see also: [% FOREACH seeals IN summary.seealso %] -
+
[% PROCESS showreference heading=seeals.heading type=seeals.type @@ -102,6 +100,7 @@ %]
[% END %] +
[% END %] [% END %] [% END %] --