我目前在 Angular 应用程序中使用自定义主题,我需要在ngb -modal-window内部的“ .modal-dialog ”容器中附加一个额外的 css 类。
根据文档(https://ng-bootstrap.github.io/#/components/modal/api),只能通过以下方式为ngb-modal-window本身传递一个类:
this.modalService.open(MyModalComponent, { windowClass: 'my-own-styles' })
有没有办法在不使用 jQuery 的情况下将类传递给“ .modal-dialog ”容器?