mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 06:58:25 +08:00
300ef67481
Rewrite the admin flag form to use FormKit. This is a draft because waiting for Checkbox improvements.
32 lines
541 B
SCSS
32 lines
541 B
SCSS
.form-kit {
|
|
&__control-checkbox {
|
|
&[type="checkbox"] {
|
|
margin: 0.17em;
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
&-label {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
font-weight: normal !important;
|
|
margin: 0;
|
|
color: var(--primary);
|
|
|
|
.form-kit__field[data-disabled] & {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__control-checkbox-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
&__control-checkbox-description {
|
|
color: var(--primary-medium);
|
|
}
|
|
}
|