禁用按钮的离子更改字体颜色

时间:2019-01-04 08:28:42

标签: ionic3

如何更改已禁用按钮的字体颜色?

我有:

 <ion-col col-1><button class='buttoncell abc noactualbutton' ion-button [disabled]="true" [color]="white">{{row[8]}}</button></ion-col>

和SCSS:

   .noactualbutton[disabled]{
      color: rgb(255, 255, 255) !important;
    }

但是它仍然是“更白的”,但是它仍然是灰色的...

2 个答案:

答案 0 :(得分:1)

禁用按钮不透明度时,将自动设置为0.4。您可以将样式设置为禁用时的按钮,如下所示:

.noactualbutton:disabled, noactualbutton[disabled]{
      color: white;
      opacity: 1;
      background: #b3b3b3;
  }

答案 1 :(得分:0)

ion-button {
    &[disabled] {
        opacity: 1;
        --background: #CCCCCC;
    }
}