@@ -, +, @@ images - Go to Administration -> System preferences, and enable the OPACCustomCoverImages and CustomCoverImages preferences. - If you're testing with the default test database you can set the CustomCoverImagesURL preference to https://static.myacpl.org/public/covers/{normalized_isbn}.jpg - Perform a catalog search in both OPAC and staff client limiting by itemtype = 'Book'. - The search results in both interface should show several covers supplied from the external URL. - In the staff client, these images should be limited to 140px wide even if the source image is larger. - In the OPAC, view the detail page for one of the results with cover images. The image shown on the detail page should be constrained to 140px wide even if the source image is larger. --- .../intranet-tmpl/prog/css/src/staff-global.scss | 12 ++++++------ koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2072,12 +2072,6 @@ li { text-align: center; } -.custom_cover_image { - img { - max-width: 140px; - } -} - #biblio-cover-slider { border: 1px solid #bfd9b9; border-radius: 3px; @@ -2154,6 +2148,12 @@ td { } } +.custom_cover_image { + img { + max-width: 140px; + } +} + .cover-nav { display: inline-block; padding: 3px 4px; --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -713,12 +713,6 @@ th { } } -.custom_cover_image { - img { - max-width: 140px; - } -} - #biblio-cover-slider { background-color: #FFF; border: 1px solid #B9D8D9; @@ -755,6 +749,12 @@ th { } } +.custom_cover_image { + img { + max-width: 140px; + } +} + .cover-nav { display: inline-block; padding: 3px 4px; --