fleet/frontend/components/YamlAce/_styles.scss
jacobshandling 391bd0a5a0
UI - GitOps mode, part 2 (#26509)
## 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>
2025-02-21 12:22:08 -08:00

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;
}
}