Fixes star rating displays

This commit is contained in:
Mouse Reeve
2020-09-28 15:57:31 -07:00
parent 49e94f8e8e
commit a4d1985f86
13 changed files with 111 additions and 90 deletions

View File

@ -38,3 +38,18 @@ input.toggle-control {
input.toggle-control:checked ~ .toggle-content {
display: block;
}
/* --- STARS --- */
.rate-stars button.icon {
background: none;
border: none;
padding: 0;
margin: 0;
display: inline;
}
.rate-stars:hover .icon:before {
content: '\e9d9';
}
.rate-stars form:hover ~ form .icon:before{
content: '\e9d7';
}