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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-3 / +8 lines)
Lines 658-671 th { Link Here
658
    }
658
    }
659
    .clear-search {
659
    .clear-search {
660
        position: absolute;
660
        position: absolute;
661
        right: 20px;
661
        right: .625rem;
662
        top: 50%;
662
        top: 1.25rem;
663
        transform: translateY( -50% );
663
        transform: translateY( -50% );
664
        cursor: pointer;
664
        cursor: pointer;
665
        color: #999;
665
        color: #548300;
666
        font-size: 2rem;
666
    }
667
    }
667
}
668
}
668
669
670
#translControl1 {
671
    padding-right: 2.5rem;
672
}
673
669
#cart-list-nav {
674
#cart-list-nav {
670
    flex-grow: 2;
675
    flex-grow: 2;
671
676
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/global.js (-2 / +1 lines)
Lines 251-257 var facetHandler = function (e) { Link Here
251
251
252
function setPlaceholder(){
252
function setPlaceholder(){
253
    let search_placeholder = $("#masthead_search option:selected").data("placeholder");
253
    let search_placeholder = $("#masthead_search option:selected").data("placeholder");
254
    let clearButton = $('<span class="clear-search"><i class="fa-solid fa-circle-xmark"></i></span>');
254
    let clearButton = $('<span class="clear-search"><i class="fa-solid fa-square-xmark"></i></span>');
255
255
256
    $("#translControl1").attr("placeholder", search_placeholder).after(clearButton);
256
    $("#translControl1").attr("placeholder", search_placeholder).after(clearButton);
257
257
258
- 

Return to bug 33668