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 2425-2430 li { Link Here
2425
    text-align: center;
2425
    text-align: center;
2426
}
2426
}
2427
2427
2428
.custom_cover_image {
2429
    img {
2430
        max-width: 140px;
2431
    }
2432
}
2433
2428
.searchhighlightblob {
2434
.searchhighlightblob {
2429
    font-size: 75%;
2435
    font-size: 75%;
2430
    font-style: italic;
2436
    font-style: italic;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +1 lines)
Lines 149-155 Link Here
149
        [% END %]
149
        [% END %]
150
150
151
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
151
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
152
            <a href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" />
152
            <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" /></a>
153
        [% END %]
153
        [% END %]
154
        [% END %]
154
        [% END %]
155
    [% ELSE %]
155
    [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +1 lines)
Lines 387-393 Link Here
387
                                        </a>
387
                                        </a>
388
                                    [% END %]
388
                                    [% END %]
389
                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
389
                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
390
                                        <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 %]" />
390
                                        <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 %]" />
391
                                    [% END %]
391
                                    [% END %]
392
                                </td>
392
                                </td>
393
                            [% END %]
393
                            [% END %]
394
- 

Return to bug 22445