Disable selecting existing group members in add members modal

This commit is contained in:
trevor-signal 2023-10-06 11:45:43 -04:00 committed by GitHub
parent 8af39e630a
commit 363142569b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 11 additions and 19 deletions

View file

@ -52,6 +52,7 @@
&:disabled:checked {
&::before {
background: $color-gray-15;
border-color: $color-gray-15;
}
}
}
@ -65,6 +66,7 @@
&:disabled:checked {
&::before {
background: $color-gray-45;
border-color: $color-gray-45;
}
}
}
@ -80,7 +82,7 @@
input[type='checkbox'] {
&:checked {
&::before {
&:not([disabled])::before {
background: $color-ultramarine;
border: 1.5px solid $color-ultramarine;
}