mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-12 22:16:16 +00:00
Attempt CSS linting fix
This commit is contained in:
parent
85dc0544c7
commit
f9074a2bc6
@ -103,12 +103,12 @@ display: none;
|
||||
}
|
||||
|
||||
.rating:not(:checked) > label:before {
|
||||
content:'★';
|
||||
content: "★";
|
||||
}
|
||||
|
||||
/* Checked star color */
|
||||
.rating > input:checked ~ label {
|
||||
color: #FFBF00;
|
||||
color: #ffbf00;
|
||||
}
|
||||
|
||||
.rating:not(:checked) > label:hover,
|
||||
@ -116,6 +116,10 @@ display: none;
|
||||
color: orangered;
|
||||
}
|
||||
|
||||
.rating > label:active {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rating > input:checked + label:hover,
|
||||
.rating > input:checked + label:hover ~ label,
|
||||
.rating > input:checked ~ label:hover,
|
||||
@ -123,7 +127,3 @@ display: none;
|
||||
.rating > label:hover ~ input:checked ~ label {
|
||||
color: orangered;
|
||||
}
|
||||
|
||||
.rating > label:active {
|
||||
position:relative;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user