cgee
cgee

Reputation: 1887

how to change the color of multi color glyphicons (icon font)

I try to change the color of a multicolor glyphicon when the user hover.

This is my example:

https://jsfiddle.net/p7ht5kzh/

I try it with this code:

.icon-usp_emblemservice:hover{
  color: red;
}

But it doesn't work with multicolor icons.

Is it possible?

Upvotes: 0

Views: 274

Answers (1)

Amal
Amal

Reputation: 3426

try this

span.icon-usp_emblemservice:hover>span:before {
    color: red;
}

DEMO

Upvotes: 5

Related Questions