View | Details | Raw Unified | Return to bug 8712
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac.css (+8 lines)
Lines 2808-2810 body#opac-main #opacmainuserblockmobile { Link Here
2808
.tagweight9 {
2808
.tagweight9 {
2809
    font-size: 30px;
2809
    font-size: 30px;
2810
}
2810
}
2811
.off-left { 
2812
position: absolute; 
2813
left: -999px; 
2814
width: 990px; 
2815
}  
2816
.heading-inline {
2817
    display: inline;
2818
}  
(-)a/koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc (-2 / +3 lines)
Lines 8-14 Link Here
8
8
9
            [% END %]
9
            [% END %]
10
            [% IF ( ShowOpacRecentSearchLink ) %]
10
            [% IF ( ShowOpacRecentSearchLink ) %]
11
                <li><a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a> [<a class="logout" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history" onclick="return confirm(_('Are you sure you want to delete your search history?'));">x</a>]</li>
11
                <li><label for="view-search-history" class="off-left">View Search History</label>
12
                <a href="/cgi-bin/koha/opac-search-history.pl" id="view-search-history" title="View your search history">Search history</a> [<label for="delete-search-history" class="off-left">Delete Search History</label><a class="logout" id="delete-search-history" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history" onclick="return confirm(_('Are you sure you want to delete your search history?'));">x</a>]</li>
12
            [% END %]
13
            [% END %]
13
			[% IF ( loggedinusername ) %]<li><a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1">Log Out</a></li>[% END %]
14
			[% IF ( loggedinusername ) %]<li><a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1">Log Out</a></li>[% END %]
14
   	</ul>	
15
   	</ul>	
Lines 169-175 Link Here
169
</div>
170
</div>
170
</div>
171
</div>
171
<div id="breadcrumbs" class="yui-g">
172
<div id="breadcrumbs" class="yui-g">
172
[% IF ( searchdesc ) %]<p>[% IF ( total ) %]<strong>Your search returned [% total |html %] results.</strong> [% IF ( related ) %] (related searches: [% FOREACH relate IN related %][% relate.related_search %][% END %]). [% END %]
173
[% IF ( searchdesc ) %]<p>[% IF ( total ) %]<h3 class="heading-inline">Your search returned [% total |html %] results.</h3> [% IF ( related ) %] (related searches: [% FOREACH relate IN related %][% relate.related_search %][% END %]). [% END %]
173
<a href="[% OPACBaseURL %]/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;count=[% countrss |html %]&amp;sort_by=acqdate_dsc&amp;format=rss2" class="rsssearchlink"><img src="/opac-tmpl/prog/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" border="0" class="rsssearchicon"/></a>
174
<a href="[% OPACBaseURL %]/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;count=[% countrss |html %]&amp;sort_by=acqdate_dsc&amp;format=rss2" class="rsssearchlink"><img src="/opac-tmpl/prog/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" border="0" class="rsssearchicon"/></a>
174
[% ELSE %]
175
[% ELSE %]
175
<strong>No results found!</strong>
176
<strong>No results found!</strong>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt (-2 / +1 lines)
Lines 623-629 $(document).ready(function(){ Link Here
623
                </td><td>
623
                </td><td>
624
                    <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber %]">
624
                    <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber %]">
625
            [% IF ( OPACLocalCoverImages ) %]<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span>[% END %]
625
            [% IF ( OPACLocalCoverImages ) %]<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span>[% END %]
626
                    [% IF ( OPACAmazonCoverImages ) %][% IF ( SEARCH_RESULT.normalized_isbn ) %]<img src="http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg" alt="" class="thumbnail" />[% ELSE %]<span class="no-image">No cover image available</span>[% END %][% END %]
626
                    [% IF ( OPACAmazonCoverImages ) %][% IF ( SEARCH_RESULT.normalized_isbn ) %]<img src="http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg" alt="Cover Image" class="thumbnail" />[% ELSE %]<span class="no-image">No cover image available</span>[% END %][% END %]
627
627
628
                [% IF ( SyndeticsEnabled ) %]
628
                [% IF ( SyndeticsEnabled ) %]
629
                    [% IF ( SyndeticsCoverImages ) %]
629
                    [% IF ( SyndeticsCoverImages ) %]
630
- 

Return to bug 8712