mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
## For #26229 This is the 2nd iterative PR for this ticket. It includes: - tests with a new testing utility - refactored argument and class names - another batch of UI updates - [x] Added/updated automated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
31 lines
447 B
SCSS
31 lines
447 B
SCSS
.yaml-ace {
|
|
&__wrapper {
|
|
&--error {
|
|
.ace-fleet {
|
|
border: 1px solid $ui-error;
|
|
}
|
|
}
|
|
&--disabled {
|
|
@include disabled;
|
|
}
|
|
}
|
|
|
|
// Added to remove the "popping" effect when the editor first loads.
|
|
min-height: 408px;
|
|
|
|
.ace_gutter-layer {
|
|
min-height: 408px;
|
|
}
|
|
|
|
.ace_line {
|
|
min-height: 24px;
|
|
}
|
|
|
|
.ace_gutter-cell {
|
|
min-height: 24px;
|
|
}
|
|
|
|
.ace_fold-widget {
|
|
min-height: 24px;
|
|
}
|
|
}
|