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

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/autofill.js (-3 / +2 lines)
Lines 31-38 Link Here
31
        var MSG_SEARCH_GOOGLE_BOOKS = __("Search Google Books");
31
        var MSG_SEARCH_GOOGLE_BOOKS = __("Search Google Books");
32
32
33
        /* decorate element as autofiller */
33
        /* decorate element as autofiller */
34
        self.$undo = $('<input type="button" class="btn" style="display:none;margin-left:5px;" value="' + MSG_UNDO_AUTOFILL_SUGGESTION + '" />');
34
        self.$undo = $('<input type="button" class="btn btn-info btn-sm" style="display:none;margin-left:5px;" value="' + MSG_UNDO_AUTOFILL_SUGGESTION + '" />');
35
        self.$fillbtn = $('<input type="button" class="btn" value="' + MSG_SEARCH_GOOGLE_BOOKS + '" />');
35
        self.$fillbtn = $('<input type="button" class="btn btn-primary btn-sm" value="' + MSG_SEARCH_GOOGLE_BOOKS + '" />');
36
        self.$error = $('<span class="add-on" style="display:none;padding-left:5px;"></span>');
36
        self.$error = $('<span class="add-on" style="display:none;padding-left:5px;"></span>');
37
        self.$elm.after(self.$error);
37
        self.$elm.after(self.$error);
38
        self.$elm.after(self.$undo);
38
        self.$elm.after(self.$undo);
39
- 

Return to bug 14242