Bugzilla – Attachment 6283 Details for
Bug 7124
Back to search wrapping in lower resolutions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed fix
0001-Fix-for-Bug-7124-back-to-search-wrapping-in-lower-re.patch (text/plain), 4.19 KB, created by
Owen Leonard
on 2011-11-11 14:04:58 UTC
(
hide
)
Description:
Proposed fix
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2011-11-11 14:04:58 UTC
Size:
4.19 KB
patch
obsolete
>From e535dd50f18e85ba05da4447c9065414fede4546 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 11 Nov 2011 09:00:27 -0500 >Subject: [PATCH] Fix for Bug 7124 - back to search wrapping in lower resolutions >Content-Type: text/plain; charset="utf-8" > >Maybe not a complete fix, but hopefully an improvement. I couldn't >prevent it from wrapping at smaller browser widths, but I was >able to change the style so that when it does wrap it's a little >more readable. >--- > koha-tmpl/opac-tmpl/prog/en/css/opac.css | 35 +++++++++++--------- > koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 8 ++-- > 2 files changed, 23 insertions(+), 20 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/prog/en/css/opac.css b/koha-tmpl/opac-tmpl/prog/en/css/opac.css >index 11c434f..5005fb8 100755 >--- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css >+++ b/koha-tmpl/opac-tmpl/prog/en/css/opac.css >@@ -2173,36 +2173,39 @@ a.koha_url { > background-color:#D9D9D9; > } > .nav_results ul.pg_menu { >- height:25px; > border-top: 1px solid #D0D0D0; >+ white-space : nowrap; > } > .nav_results ul.pg_menu li { > color:#B2B2B2; >- display:block; >- float:left; >- padding:5px 0; >+ display:inline; > list-style:none; >- text-align:center; >+ margin: 0; > } >-.nav_results ul.pg_menu li.back_results { >- padding:5px 0px; >- width:45%; >+.nav_results ul.pg_menu li.back_results a { > border-left: 1px solid #D0D0D0; > border-right: 1px solid #D0D0D0; > } >-.nav_results ul.pg_menu li a { >+.nav_results ul.pg_menu li a, >+.nav_results ul.pg_menu li span { >+ background-color: #F3F3F3; >+ display : block; >+ float:left; >+ padding:.4em .5em; > text-decoration:none; > font-weight:normal; >- color:#4D4D4D; >+ text-align:center; > } >-.nav_results ul.pg_menu li a:hover { >- color:#006699; >+ >+.nav_results ul.pg_menu li span { >+ color : #B2B2B2; > } >-.nav_results ul.pg_menu li.left_results { >- margin-right:10px; >+ >+.nav_results ul.pg_menu li.left_results a { >+ padding-left : 0; > } >-.nav_results ul.pg_menu li.right_results { >- margin-left:10px; >+ >+.nav_results ul.pg_menu li a:hover { > } > > .nav_results #listResults{ >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt >index 8cba98b..5f88067 100755 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt >@@ -994,11 +994,11 @@ YAHOO.util.Event.onContentReady("furtherm", function () { > <div id="ulactioncontainer" class="container"> > [% IF ( busc ) %] > <div class="nav_results"> >- <div class="l_Results">[% IF ( listResults ) %]<a href="#" id="a_listResults" title="Show pagination list ([% indexPag %]-[% indexPagEnd %] / [% totalPag %])">Browse results</a>[% ELSE %]Browse results[% END %]</div> >- <ul class="pg_menu"> >- <li class="left_results">[% IF ( previous ) %]<a href="[% previous %]" title="See: [% IF ( previousTitle ) %][% previousTitle |html %][% ELSE %]previous biblio[% END %]">« Previous</a>[% ELSE %]Previous[% END %]</li> >+ <div class="l_Results">[% IF ( listResults ) %]<a href="#" id="a_listResults" title="Show pagination list ([% indexPag %]-[% indexPagEnd %] / [% totalPag %])">Browse results</a>[% ELSE %]<span>Browse results</span>[% END %]</div> >+ <ul class="pg_menu clearfix"> >+ <li class="left_results">[% IF ( previous ) %]<a href="[% previous %]" title="See: [% IF ( previousTitle ) %][% previousTitle |html %][% ELSE %]previous biblio[% END %]">« Previous</a>[% ELSE %]<span>Previous</span>[% END %]</li> > <li class="back_results"><a href="opac-search.pl?[% busc %]" title="Back to the results search list">Back to results</a></li> >- <li class="right_results">[% IF ( next ) %]<a href="[% next %]" title="See: [% IF ( nextTitle ) %][% nextTitle |html %][% ELSE %]next biblio[% END %]">Next »</a>[% ELSE %]Next[% END %]</li> >+ <li class="right_results">[% IF ( next ) %]<a href="[% next %]" title="See: [% IF ( nextTitle ) %][% nextTitle |html %][% ELSE %]next biblio[% END %]">Next »</a>[% ELSE %]<span>Next</span>[% END %]</li> > </ul> > [% IF ( listResults ) %] > <div class="pagination"> >-- >1.7.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7124
:
6131
|
6283
|
6284