更改基本配件面板颜色箭头角材料

时间:2020-05-13 09:45:47

标签: javascript angular angular-material

我有accourdion面板,我想更改accourdion中的箭头颜色。 enter image description here

我在此CSS中编写了此代码,但它不起作用:

.mat-expansion-panel {
  .mat-expansion-indicator {
    .mat-expansion-indicator::after{
      color:red !important;
      border-color: rgb(0, 0, 0) !important;
    }
  }
}

如何更改箭头的颜色????

1 个答案:

答案 0 :(得分:1)

您必须将:: ng-deep与材质类一起使用以覆盖默认样式。

:host ::ng-deep .mat-expansion-indicator::after {
      color:red !important;
      border-color: rgb(0, 0, 0) !important
} 

Example