Change the background color in a twitter bootstrap modal?

后端 未结 11 611
死守一世寂寞
死守一世寂寞 2020-12-01 03:01

When creating a modal in twitter bootstrap, is there any way to change the background color? Remove the shading entirely?

NB: For removing shading, this doesn\'

11条回答
  •  囚心锁ツ
    2020-12-01 03:32

    It gets a little bit more complicated if you want to add the background to a specific modal. One way of solving that is to add and call something like this function instead of showing the modal directly:

    function showModal(selector) {
        $(selector).modal('show');
        $('.modal-backdrop').addClass('background-backdrop');
    }
    

    Any css can then be applied to the background-backdrop class.

提交回复
热议问题