mirror of
https://github.com/ae-utbm/sith.git
synced 2026-08-26 15:19:15 +00:00
StarList uses proper inheritance and properly passes initial values and attributes + add empty comment clause
This commit is contained in:
@@ -520,40 +520,4 @@ details.accordion>.accordion-content {
|
||||
background-color: $white-color;
|
||||
border-color: $pedagogy-orange;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
fieldset.star {
|
||||
label {
|
||||
display: inline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checked {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.unchecked {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.hovered {
|
||||
color: #FFD700;
|
||||
}
|
||||
|
||||
.checked.hovered {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.removed {
|
||||
color: red;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
label:first-child {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
fieldset.star {
|
||||
border: none;
|
||||
|
||||
label {
|
||||
display: inline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checked {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.unchecked {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.hovered {
|
||||
color: #FFD700;
|
||||
}
|
||||
|
||||
.checked.hovered {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.removed {
|
||||
color: red;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
label:first-child {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
&:has(input:required:invalid) {
|
||||
border: 1px solid;
|
||||
border-color: #c00000;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user