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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+3 lines)
Lines 2201-2206 td { Link Here
2201
        min-width: 120px;
2201
        min-width: 120px;
2202
        text-align: center;
2202
        text-align: center;
2203
    }
2203
    }
2204
2204
    .cover-slides {
2205
    .cover-slides {
2205
        background: transparent none;
2206
        background: transparent none;
2206
        border: 0;
2207
        border: 0;
Lines 2602-2607 td { Link Here
2602
    display: block;
2603
    display: block;
2603
    font-size: 86%;
2604
    font-size: 86%;
2604
    font-weight: bold;
2605
    font-weight: bold;
2606
    margin: 1em auto;
2607
    padding: 1em;
2605
    text-align: center;
2608
    text-align: center;
2606
    width: 75px;
2609
    width: 75px;
2607
}
2610
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-1 / +1 lines)
Lines 436-443 Link Here
436
            [% IF ( AdlibrisEnabled && SEARCH_RESULT.normalized_isbn ) %]
436
            [% IF ( AdlibrisEnabled && SEARCH_RESULT.normalized_isbn ) %]
437
                <div id="adlibris-coverimg-[% SEARCH_RESULT.biblionumber | html %]" class="cover-image adlibris-coverimg">
437
                <div id="adlibris-coverimg-[% SEARCH_RESULT.biblionumber | html %]" class="cover-image adlibris-coverimg">
438
                    <a href="[% AdlibrisURL | url %]?isbn=[% SEARCH_RESULT.normalized_isbn | uri %]"><img src="[% AdlibrisURL | url %]?isbn=[% SEARCH_RESULT.normalized_isbn | uri %]" class="adlibris-cover" alt="Adlibris cover image" /></a>
438
                    <a href="[% AdlibrisURL | url %]?isbn=[% SEARCH_RESULT.normalized_isbn | uri %]"><img src="[% AdlibrisURL | url %]?isbn=[% SEARCH_RESULT.normalized_isbn | uri %]" class="adlibris-cover" alt="Adlibris cover image" /></a>
439
                    <div class="hint">Adlibris cover image</div>
439
                </div>
440
                </div>
440
                <div class="hint">Adlibris cover image</div>
441
            [% END %]
441
            [% END %]
442
442
443
            [% IF ( AmazonCoverImages && SEARCH_RESULT.normalized_isbn ) %]
443
            [% IF ( AmazonCoverImages && SEARCH_RESULT.normalized_isbn ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/results.js (-2 / +1 lines)
Lines 95-101 function verify_images() { Link Here
95
95
96
        /* If no slides contain any cover images, remove the container */
96
        /* If no slides contain any cover images, remove the container */
97
        if( $(".cover-image:visible", slide).length < 1 ){
97
        if( $(".cover-image:visible", slide).length < 1 ){
98
            slide.remove();
98
            slide.html('<div class="no-image">' + __("No cover image available") + '</div>');
99
        }
99
        }
100
    });
100
    });
101
}
101
}
102
- 

Return to bug 25846