Skip to content

Instantly share code, notes, and snippets.

@WillHall
Created May 30, 2015 05:42
Show Gist options
  • Save WillHall/d282499d137dea9bd8dc to your computer and use it in GitHub Desktop.
Save WillHall/d282499d137dea9bd8dc to your computer and use it in GitHub Desktop.
fa stars hover illumination for acf-star-rating
.wp-admin {
.field_type-star_rating {
.star-rating {
float: left;
margin: 0;
&:hover {
li {
i {
color: blue;
}
}
}
li {
i {
color: #999;
font-size: 1.25rem;
&:before {
content: "\f005";
}
&.fa-star {
color: blue;
}
}
&:hover {
i {
color: blue;
}
& ~ li {
i {
&.fa-star-o {
color: #999;
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment