* Fix all stylelint errors For any errors that fixing would require changing the output of the css disable stylelint for that line instead of modifying. * Update quality.py Make stylelint quality check pass when there are no errors * Delete empty selectors
28 lines
415 B
SCSS
28 lines
415 B
SCSS
/*
|
|
This file mirror UXPL Form field styles
|
|
*/
|
|
|
|
@import 'lms/theme/variables';
|
|
|
|
.post-type-label {
|
|
@include margin-right($baseline);
|
|
|
|
display: inline-block;
|
|
line-height: 100%;
|
|
}
|
|
|
|
.field-label {
|
|
.post-options & {
|
|
display: inline-block;
|
|
}
|
|
|
|
.field-input:checked + .field-input-label {
|
|
color: theme-color("primary");
|
|
}
|
|
}
|
|
|
|
.input-radio,
|
|
.input-checkbox {
|
|
@include margin-right($baseline / 2);
|
|
}
|