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 2094-2099 li { Link Here
2094
    text-align: center;
2094
    text-align: center;
2095
}
2095
}
2096
2096
2097
.custom_cover_image {
2098
    img {
2099
        max-width: 140px;
2100
    }
2101
}
2102
2097
.searchhighlightblob {
2103
.searchhighlightblob {
2098
    font-size: 75%;
2104
    font-size: 75%;
2099
    font-style: italic;
2105
    font-style: italic;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +1 lines)
Lines 155-161 Link Here
155
        [% END %]
155
        [% END %]
156
156
157
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
157
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
158
            <a href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" />
158
            <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" /></a>
159
        [% END %]
159
        [% END %]
160
        [% END %]
160
        [% END %]
161
161
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +1 lines)
Lines 418-424 Link Here
418
                                                    [% END %]
418
                                                    [% END %]
419
419
420
                                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
420
                                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
421
                                                        <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 %]" />
421
                                                        <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 %]" />
422
                                                    [% END %]
422
                                                    [% END %]
423
                                                </td>
423
                                                </td>
424
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce )%]
424
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce )%]
425
- 

Return to bug 22445