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 3218-3220 span.name { Link Here
3218
    font-weight: bold;
3218
    font-weight: bold;
3219
    font-style: italic;
3219
    font-style: italic;
3220
}
3220
}
3221
3222
.result-biblio-itemtype {
3223
    float: right;
3224
    padding: .5em;
3225
    margin: .5em;
3226
    font-size: 85%;
3227
    text-align: center;
3228
}
3229
3230
.result-biblio-itemtype img {
3231
    display: block;
3232
    margin: auto;
3233
    margin-bottom: 2px;
3234
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-15 / +11 lines)
Lines 382-387 Link Here
382
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
382
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
383
                            </td>
383
                            </td>
384
                            <td>
384
                            <td>
385
386
                                [% UNLESS ( item_level_itypes ) %]
387
                                    <div class="result-biblio-itemtype">
388
                                        [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
389
                                            <img src="[% SEARCH_RESULT.imageurl %]" alt="[% SEARCH_RESULT.description %]" />
390
                                        [% END %]
391
                                        [% SEARCH_RESULT.description %]
392
                                    </div>
393
                                [% END %]
394
385
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
395
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
386
                [% SEARCH_RESULT.result_number %].
396
                [% SEARCH_RESULT.result_number %].
387
				[% SEARCH_RESULT.XSLTResultsRecord %]
397
				[% SEARCH_RESULT.XSLTResultsRecord %]
Lines 402-423 Link Here
402
                                        [% ELSE %]
412
                                        [% ELSE %]
403
                                            &nbsp;
413
                                            &nbsp;
404
                                        [% END %]
414
                                        [% END %]
405
                                    <p>
415
                                    <p>[% SEARCH_RESULT.summary %]</p>
406
                                    [% UNLESS ( item_level_itypes ) %]
407
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
408
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="[% SEARCH_RESULT.description %]" />
409
                                    [% END %]
410
                                    [% SEARCH_RESULT.description %]
411
                                    [% END %]
412
                                    [% SEARCH_RESULT.summary %]</p>
413
                                [% ELSE %]
416
                                [% ELSE %]
414
                                    <p>
417
                                    <p>
415
                                    [% UNLESS ( item_level_itypes ) %]
416
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
417
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="" />
418
                                    [% END %]
419
                                    [% END %]
420
421
                                        [% IF ( SEARCH_RESULT.author ) %]
418
                                        [% IF ( SEARCH_RESULT.author ) %]
422
                                            <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>
419
                                            <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>
423
                                        [% ELSE %]
420
                                        [% ELSE %]
424
- 

Return to bug 18799