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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-2 / +1 lines)
Lines 2860-2866 $star-selected: #EDB867; Link Here
2860
.autocomplete {
2860
.autocomplete {
2861
    /*the container must be positioned relative:*/
2861
    /*the container must be positioned relative:*/
2862
    position: relative;
2862
    position: relative;
2863
    display: inline-block;
2864
    width: 100%;
2863
    width: 100%;
2865
}
2864
}
2866
2865
Lines 2869-2875 $star-selected: #EDB867; Link Here
2869
    border: 1px solid #d4d4d4;
2868
    border: 1px solid #d4d4d4;
2870
    border-bottom: none;
2869
    border-bottom: none;
2871
    border-top: none;
2870
    border-top: none;
2872
    z-index: 99;
2871
    z-index: 9999;
2873
2872
2874
    div {
2873
    div {
2875
        padding: 10px;
2874
        padding: 10px;
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-elasticsearch/opac-autocomplete.js (-1 / +1 lines)
Lines 51-56 function autocomplete(inp, nb, left, right) { Link Here
51
    /* create new div with position relative for class .autocomplete with absolute */
51
    /* create new div with position relative for class .autocomplete with absolute */
52
    var div_relative = document.createElement('div');
52
    var div_relative = document.createElement('div');
53
    $(div_relative).addClass( "autocomplete" );
53
    $(div_relative).addClass( "autocomplete" );
54
    $(div_relative).css("display", "inline-block");
54
    div_relative.append(inp);
55
    div_relative.append(inp);
55
    /* input doesn't have an elem after, add it to parent */
56
    /* input doesn't have an elem after, add it to parent */
56
    if (next_elem_inp === null){
57
    if (next_elem_inp === null){
57
- 

Return to bug 27113