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 689-702 th { Link Here
689
    }
689
    }
690
    .clear-search {
690
    .clear-search {
691
        position: absolute;
691
        position: absolute;
692
        right: 20px;
692
        right: .625rem;
693
        top: 50%;
693
        top: 1.25rem;
694
        transform: translateY( -50% );
694
        transform: translateY( -50% );
695
        cursor: pointer;
695
        cursor: pointer;
696
        color: #999;
696
        color: #548300;
697
        font-size: 2rem;
697
    }
698
    }
698
}
699
}
699
700
701
#translControl1 {
702
    padding-right: 2.5rem;
703
}
704
700
#cart-list-nav {
705
#cart-list-nav {
701
    flex-grow: 2;
706
    flex-grow: 2;
702
}
707
}
(-)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