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 2858-2864 $star-selected: #EDB867; Link Here
2858
.autocomplete {
2858
.autocomplete {
2859
    /*the container must be positioned relative:*/
2859
    /*the container must be positioned relative:*/
2860
    position: relative;
2860
    position: relative;
2861
    display: inline-block;
2862
    width: 100%;
2861
    width: 100%;
2863
}
2862
}
2864
2863
Lines 2867-2873 $star-selected: #EDB867; Link Here
2867
    border: 1px solid #d4d4d4;
2866
    border: 1px solid #d4d4d4;
2868
    border-bottom: none;
2867
    border-bottom: none;
2869
    border-top: none;
2868
    border-top: none;
2870
    z-index: 99;
2869
    z-index: 9999;
2871
2870
2872
    div {
2871
    div {
2873
        padding: 10px;
2872
        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