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

(-)a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css (+14 lines)
Lines 3007-3009 fieldset.rows + fieldset.action { Link Here
3007
#patron_search #filters {
3007
#patron_search #filters {
3008
    display: none;
3008
    display: none;
3009
}
3009
}
3010
3011
.result-biblio-itemtype {
3012
    float: right;
3013
    padding: .5em;
3014
    margin: .5em;
3015
    font-size: 85%;
3016
    text-align: center;
3017
}
3018
3019
.result-biblio-itemtype img {
3020
    display: block;
3021
    margin: auto;
3022
    margin-bottom: 2px;
3023
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-15 / +11 lines)
Lines 529-534 var holdForPatron = function () { Link Here
529
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
529
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
530
                            </td>
530
                            </td>
531
                            <td>
531
                            <td>
532
533
                                [% UNLESS ( item_level_itypes ) %]
534
                                    <div class="result-biblio-itemtype">
535
                                        [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
536
                                            <img src="[% SEARCH_RESULT.imageurl %]" alt="[% SEARCH_RESULT.description %]" />
537
                                        [% END %]
538
                                        [% SEARCH_RESULT.description %]
539
                                    </div>
540
                                [% END %]
541
532
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
542
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
533
                [% SEARCH_RESULT.result_number %].
543
                [% SEARCH_RESULT.result_number %].
534
				[% SEARCH_RESULT.XSLTResultsRecord %]
544
				[% SEARCH_RESULT.XSLTResultsRecord %]
Lines 549-570 var holdForPatron = function () { Link Here
549
                                        [% ELSE %]
559
                                        [% ELSE %]
550
                                            &nbsp;
560
                                            &nbsp;
551
                                        [% END %]
561
                                        [% END %]
552
                                    <p>
562
                                    <p>[% SEARCH_RESULT.summary %]</p>
553
                                    [% UNLESS ( item_level_itypes ) %]
554
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
555
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="[% SEARCH_RESULT.description %]" />
556
                                    [% END %]
557
                                    [% SEARCH_RESULT.description %]
558
                                    [% END %]
559
                                    [% SEARCH_RESULT.summary %]</p>
560
                                [% ELSE %]
563
                                [% ELSE %]
561
                                    <p>
564
                                    <p>
562
                                    [% UNLESS ( item_level_itypes ) %]
563
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
564
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="" />
565
                                    [% END %]
566
                                    [% END %]
567
568
                                        [% IF ( SEARCH_RESULT.author ) %]
565
                                        [% IF ( SEARCH_RESULT.author ) %]
569
                                            <a href="/cgi-bin/koha/catalogue/search.pl?idx=au&amp;q=[% SEARCH_RESULT.author |url %]" title="Search for this Author">[% SEARCH_RESULT.author %]</a>
566
                                            <a href="/cgi-bin/koha/catalogue/search.pl?idx=au&amp;q=[% SEARCH_RESULT.author |url %]" title="Search for this Author">[% SEARCH_RESULT.author %]</a>
570
                                        [% ELSE %]
567
                                        [% ELSE %]
571
- 

Return to bug 18799