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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+6 lines)
Lines 2454-2459 li { Link Here
2454
    text-align: center;
2454
    text-align: center;
2455
}
2455
}
2456
2456
2457
.custom_cover_image {
2458
    img {
2459
        max-width: 140px;
2460
    }
2461
}
2462
2457
.searchhighlightblob {
2463
.searchhighlightblob {
2458
    font-size: 75%;
2464
    font-size: 75%;
2459
    font-style: italic;
2465
    font-style: italic;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +1 lines)
Lines 143-149 Link Here
143
        [% END %]
143
        [% END %]
144
144
145
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
145
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
146
            <a href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" />
146
            <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" /></a>
147
        [% END %]
147
        [% END %]
148
        [% END %]
148
        [% END %]
149
149
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +1 lines)
Lines 396-402 Link Here
396
                                                        </a>
396
                                                        </a>
397
                                                    [% END # /IF AmazonCoverImages %]
397
                                                    [% END # /IF AmazonCoverImages %]
398
                                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
398
                                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
399
                                                        <a href="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]"><img alt="Cover image" src="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" />
399
                                                        <a class="custom_cover_image" href="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]"><img alt="Cover image" src="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" />
400
                                                    [% END %]
400
                                                    [% END %]
401
                                                </td>
401
                                                </td>
402
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled )%]
402
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled )%]
403
- 

Return to bug 22445