Omkar Kambli
Omkar Kambli

Reputation: 11

how can we give color to "ngx-star-rating"?

I have used ngx-star-rating plugin. I tried various methods like fill & color but it doesn't work ! Any suggestions ? on what should I do for coloring the star-rating from yellow to any other color ?

Upvotes: 0

Views: 2095

Answers (1)

Jax-p
Jax-p

Reputation: 8551

CSS selector label.star:before and attribute color is what you are looking for.

input.star:checked ~ label.star:before {
  color: pink !important;
}

You can check this demo.

Upvotes: 2

Related Questions