如何更改角度4中的引导程序的模态内容的背景颜色

问题描述 投票:0回答:2

我想更改模态内容的引导程序模型背景颜色,但是无法更改模态内容的背景颜色,请提供帮助。

{{'MEDIA_PAGE.media_materials_title'|翻译}}

<app-asset></app-asset>
</modal-content>
<modal-footer >
  <button type="button" class="btn btn-default cancel-button" (click)="addModel.close()">{{'SHARED.Actions.cancel' | translate}}</button>
  <!-- <button type="button" class="btn btn-primary yes-button" (click)="ManagePublishNews(newsItem.id,false);addModel.close()">{{'SHARED.Actions.confirm' | translate}}</button> -->
</modal-footer>

enter code here
angular modal-dialog
2个回答
0
投票

您可以像这样向html添加样式

<modal-content style="background-color:red;">  </modal-content>

0
投票

只需覆盖该元素的CSS,并在CSS之后使用!important关键字以确保其被覆盖。例如:

.modal-content {
    background: #f9a81a !important;
    border: 1.5px solid grey;
}
© www.soinside.com 2019 - 2024. All rights reserved.