I currently have a button on my website that triggers a form:
<button (click)="create()" *ngIf="data.new" [disabled]="!dataForm.valid" color="primary" mat-raised-button>
Go
</button>
Under specific conditions, this button disables all fields.
Is there a way to use CSS to style the form only when it is affected by the [disabled] attribute?