Skip to content

Commit f9e66a3

Browse files
committed
Replace × with checkmark on selected language checkboxes
1 parent 3aeb048 commit f9e66a3

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

app/assets/stylesheets/components/_all-languages-list.scss

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626
&::before {
2727
@include position(absolute, 3px null null -2px);
2828
@include size(1.1rem, 1rem);
29-
background-color: $codetriage-blue;
29+
background-color: transparent;
30+
border: 1px solid $codetriage-blue;
3031
border-radius: $base-border-radius;
31-
color: $base-background-color;
32+
color: $white;
3233
content: "";
3334
display: inline-block;
3435
line-height: 1rem;
@@ -37,10 +38,11 @@
3738
}
3839
}
3940

40-
&:checked + label {
41-
&::before {
42-
background-color: $white;
43-
content: "×";
41+
&:checked +label{
42+
&::before{
43+
background-color :$codetriage-blue;
44+
border-color:$codetriage-blue;
45+
content:"\2713";
4446
}
4547
}
4648
}

0 commit comments

Comments
 (0)