自动为反应形式的禁用字段设置“不允许”光标

时间:2019-03-28 10:47:51

标签: angular css3 typescript angular-reactive-forms angular-forms

在Angular 6/7中仍然存在

当我将鼠标悬停在反应形式的任何禁用字段上时,光标  自动更改为“不允许” ???

我不想使用CSS来更改光标。必须有某种方法仅使用角度来实现。

PS:当前控件已被禁用,但光标未更改为“ NotAllowed”。

1 个答案:

答案 0 :(得分:0)

input:disabled,
input[disabled]{
cursor:not-allowed !important;
}

select:disabled,
select[disabled]
{
cursor:not-allowed !important;
}
textarea:disabled,
textarea[disabled]
{
cursor:not-allowed !important;
}


  Although I had to use CSS, This fixed my issue in a very clear way.