ng-select change color on disabled state for items in the option list angular

Viewed 22

I am trying to style the disabled state for a list of options, using ng-select in Angular.

What is the css class of ng-select for disabled state?

1 Answers
ng-select-disabled

Example of usage:

.ng-select-disabled > .ng-select-container {
  color: red;
}

Haven't tried, but it may also work just:

.ng-select-disabled {
  color: red;
}
Related