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 3289-3291 span.name { Link Here
3289
    font-weight: bold;
3289
    font-weight: bold;
3290
    font-style: italic;
3290
    font-style: italic;
3291
}
3291
}
3292
3293
.result-biblio-itemtype {
3294
    float: right;
3295
    padding: .5em;
3296
    margin: .5em;
3297
    font-size: 85%;
3298
    text-align: center;
3299
}
3300
3301
.result-biblio-itemtype img {
3302
    display: block;
3303
    margin: auto;
3304
    margin-bottom: 2px;
3305
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-15 / +11 lines)
Lines 383-388 Link Here
383
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
383
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
384
                            </td>
384
                            </td>
385
                            <td>
385
                            <td>
386
387
                                [% UNLESS ( item_level_itypes ) %]
388
                                    <div class="result-biblio-itemtype">
389
                                        [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
390
                                            <img src="[% SEARCH_RESULT.imageurl %]" alt="[% SEARCH_RESULT.description %]" />
391
                                        [% END %]
392
                                        [% SEARCH_RESULT.description %]
393
                                    </div>
394
                                [% END %]
395
386
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
396
			    [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %]
387
                [% SEARCH_RESULT.result_number %].
397
                [% SEARCH_RESULT.result_number %].
388
				[% SEARCH_RESULT.XSLTResultsRecord %]
398
				[% SEARCH_RESULT.XSLTResultsRecord %]
Lines 403-424 Link Here
403
                                        [% ELSE %]
413
                                        [% ELSE %]
404
                                            &nbsp;
414
                                            &nbsp;
405
                                        [% END %]
415
                                        [% END %]
406
                                    <p>
416
                                    <p>[% SEARCH_RESULT.summary %]</p>
407
                                    [% UNLESS ( item_level_itypes ) %]
408
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
409
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="[% SEARCH_RESULT.description %]" />
410
                                    [% END %]
411
                                    [% SEARCH_RESULT.description %]
412
                                    [% END %]
413
                                    [% SEARCH_RESULT.summary %]</p>
414
                                [% ELSE %]
417
                                [% ELSE %]
415
                                    <p>
418
                                    <p>
416
                                    [% UNLESS ( item_level_itypes ) %]
417
                                    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %]
418
                                    <img src="[% SEARCH_RESULT.imageurl %]" title="[% SEARCH_RESULT.description %]" style="float: left; margin: .1em;" alt="" />
419
                                    [% END %]
420
                                    [% END %]
421
422
                                        [% IF ( SEARCH_RESULT.author ) %]
419
                                        [% IF ( SEARCH_RESULT.author ) %]
423
                                            <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>
420
                                            <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>
424
                                        [% ELSE %]
421
                                        [% ELSE %]
425
- 

Return to bug 18799