From 40eb5347925c4adf546e95cbc0a497de48334774 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Mon, 24 Oct 2011 13:23:01 -0500 Subject: [PATCH] Bug 7084 - Adding results_summary class to New Tag to correct display inconsistency Content-Type: text/plain; charset="utf-8" To test: Verify that New Tag text is the same size as all of the other surrounding text. Verify that it is consistent with results that have tags. See screenshot for what it looked like before: http://screencast.com/t/hnt15kpS7SH9 Notice that the Add button and New tag text were slightly larger than the similar constructions for results with existing tags. This patch should fix that. --- .../opac-tmpl/prog/en/modules/opac-results.tt | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt index b7fbcb3..392f47b 100755 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt @@ -478,10 +478,11 @@ $(document).ready(function(){ [% END %] [% IF ( LibraryThingForLibrariesID ) %]
[% END %] +
+ [% IF ( opacuserlogin ) %][% IF ( TagsEnabled ) %] [% IF ( TagsShowOnList ) %] [% IF ( SEARCH_RESULT.TagLoop.size ) %] -
Tags:
    [% FOREACH TagLoo IN SEARCH_RESULT.TagLoop %]
  • [% TagLoo.term %] ([% TagLoo.weight_total %])
  • [% END %] @@ -490,13 +491,14 @@ $(document).ready(function(){ [% IF ( TagsInputOnList ) %] [% IF ( loggedinusername ) %]
    - + New tag:
    +
[% ELSIF ( loop.first ) %]Log in to add tags. [% END %] [% END %] -- 1.7.2.5