Changing searchBuilder close button

Changing searchBuilder close button

equinox22equinox22 Posts: 17Questions: 5Answers: 0

Hi,

How do you go about changing the style of the close button for searchBuilder? I've had a look in all the usual ccs files but can't seem to find where this one is located. I'd like it to look similar to the Clear All button and just say Close.

Any help to locate where to do this would be greatly appreciated.

Thanks

This question has an accepted answers - jump to answer

Answers

  • rf1234rf1234 Posts: 2,996Questions: 87Answers: 421
    Answer ✓

    I am not using search builder. But I would recommend to use "inspect" in your browser to Identify the dom-element and use jQuery to change it using a suitable Editor or Data Tables event.

    Example on how to change the global search field of a data table:

    table
        .on ('init', function () {    
            $('*[type="search"][class="form-control input-sm"]')
                    .addClass('input-lg')
                    .css({ 'width': '400px', 'display': 'inline-block' });
            $('div.dataTables_filter').css({ 'margin-top': '1em' });
        })
    
Sign In or Register to comment.