salte-io / salte-rating

`salte-rating` allows you to display ratings with extreme precision
MIT License
3 stars 3 forks source link

Cursor set to "pointer" when disabled #13

Open jarrodek opened 6 years ago

jarrodek commented 6 years ago

When the component is disable it still renders cursor as "pointer".

Proper way of styling using :host is:

:host([disabled]) .foreground-rating .item {
  cursor: default;
}

Also the value here should be "inherit" as an author using the component can set different cursor for any reason.