Browse Source

Bug 23446: Fix display issue in serials navigation

The serial navigation shows a little stangely on the
serial subscription detail page and other pages that show
information about a specific subscription with one of the menu items
having a different display height than the other items.

To test:
- Go to the serials module
- Add or search for an existing subscription
- Go to the subscription detail page
- Verify the display issue in the navigation on the left
- Apply patch
- Check again from different pages in the serials module
- Verify display is improved

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
remotes/origin/19.11.x
Katrin Fischer 5 years ago
committed by Martin Renvoize
parent
commit
d5152dfcdf
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 6
      koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc

6
koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc

@ -1,7 +1,7 @@
<div id="navmenu">
<div id="navmenulist">
<ul>
[% IF ( subscriptionid ) %]
<ul>
<li><a href="serials-collection.pl?subscriptionid=[% subscriptionid | uri %]">Serial collection</a></li>
[% UNLESS closed %]
[% IF ( routing && CAN_user_serials_routing ) %]
@ -12,10 +12,8 @@
[% END %]
[% END %]
[% END %]
</ul>
[% END %]
<ul>
[% IF ( CAN_user_serials_claim_serials ) %]
<li><a href="/cgi-bin/koha/serials/claims.pl">Claims</a></li>
[% END %]
@ -37,4 +35,4 @@
[% END %]
</ul>
</div>
</div>
</div>

Loading…
Cancel
Save