Change the background color in a twitter bootstrap modal?

后端 未结 11 596
死守一世寂寞
死守一世寂寞 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:07

    For Angular(7+) Project:

    ::ng-deep .modal-backdrop.show {
        opacity: 0.7 !important;
    }
    

    Otherwise you can use:

    .modal-backdrop.show {
        opacity: 0.7 !important;
    }
    

提交回复
热议问题