mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 01:32:08 +01:00
22 lines
379 B
CSS
22 lines
379 B
CSS
#svg-star, a.star svg, span.star svg {
|
|
width: 1em;
|
|
height: 1em;
|
|
fill: white;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.stars {
|
|
display: flex;
|
|
flex-flow: row-reverse;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.stars-editable .star:hover svg,
|
|
.stars-editable .star:hover ~ .star svg {
|
|
fill: orange;
|
|
}
|
|
.star.is-selected svg,
|
|
.star.is-selected ~ .star svg {
|
|
fill: #996300;
|
|
}
|