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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-4 / +1 lines)
Lines 974-983 $(document).ready(function(){ Link Here
974
[% IF ( DidYouMean ) %]
974
[% IF ( DidYouMean ) %]
975
    $("#didyoumean").load("/cgi-bin/koha/svc/suggestion?render=stub&q=[% querystring |uri %]",
975
    $("#didyoumean").load("/cgi-bin/koha/svc/suggestion?render=stub&q=[% querystring |uri %]",
976
        function() {
976
        function() {
977
            $(".searchsuggestion").parent().parent().css({
977
            $(this).addClass("dym-loaded");
978
                "border-color": "#F4ECBE",
979
                "background-color": "#FFFBEA"
980
            });
981
        });
978
        });
982
[% END %]
979
[% END %]
983
980
(-)a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less (-2 / +7 lines)
Lines 1735-1744 input.editshelf { Link Here
1735
#didyoumean {
1735
#didyoumean {
1736
    background-color: #EEE;
1736
    background-color: #EEE;
1737
    border: 1px solid #E8E8E8;
1737
    border: 1px solid #E8E8E8;
1738
    margin: 0 0 0.5em;
1738
    box-sizing: border-box;
1739
    margin: .5em 1.5em;
1739
    text-align: left;
1740
    text-align: left;
1740
    padding: 0.5em;
1741
    padding: 0.5em;
1741
    .border-radius-all(3px);
1742
    .border-radius-all(3px);
1743
1744
    &.dym-loaded {
1745
        border-color: #F4ECBE;
1746
        background-color: #FFFBEA;
1747
    }
1742
}
1748
}
1743
1749
1744
.suggestionlabel {
1750
.suggestionlabel {
Lines 1747-1753 input.editshelf { Link Here
1747
1753
1748
.searchsuggestion {
1754
.searchsuggestion {
1749
    padding: 0.2em 0.5em;
1755
    padding: 0.2em 0.5em;
1750
    white-space: nowrap;
1751
    display: inline-block;
1756
    display: inline-block;
1752
}
1757
}
1753
1758
(-)a/koha-tmpl/opac-tmpl/bootstrap/less/responsive.less (-1 / +9 lines)
Lines 41-46 Link Here
41
    .input-fluid {
41
    .input-fluid {
42
        width : 75%;
42
        width : 75%;
43
    }
43
    }
44
    .searchsuggestion {
45
        display: block;
46
    }
44
}
47
}
45
/* Override Bootstrap Responsive CSS fixed navbar */
48
/* Override Bootstrap Responsive CSS fixed navbar */
46
@media (max-width: 979px) {
49
@media (max-width: 979px) {
Lines 421-426 Link Here
421
            padding: 1em 0 1em 0;
424
            padding: 1em 0 1em 0;
422
        }
425
        }
423
    }
426
    }
427
    #didyoumean {
428
        margin: 0;
429
    }
430
    .searchsuggestion {
431
        white-space: nowrap;
432
    }
424
}
433
}
425
434
426
@media only screen and (min-width: 768px) and (max-width: 984px) {
435
@media only screen and (min-width: 768px) and (max-width: 984px) {
427
- 

Return to bug 16515