mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
## Front end for #19551 Feature branch merge to `main` – all work as been previously approved in individual PRs to the feature branch. - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
52 lines
885 B
SCSS
52 lines
885 B
SCSS
.fleet-ace {
|
|
&__label {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
|
|
&--error {
|
|
color: $core-vibrant-red;
|
|
}
|
|
&--with-action {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
button {
|
|
height: initial; // aligning space between label and textarea
|
|
animation: fade-in 250ms ease-out;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__wrapper {
|
|
&--error {
|
|
.ace-fleet {
|
|
border: 1px solid $core-vibrant-red;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ace_content {
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.ace_placeholder {
|
|
font-family: "SourceCodePro", $monospace;
|
|
margin: initial;
|
|
font-size: 15px;
|
|
}
|
|
|
|
&__help-text {
|
|
@include help-text;
|
|
|
|
code {
|
|
color: $core-vibrant-blue;
|
|
background-color: $ui-light-grey;
|
|
padding: $pad-xxsmall;
|
|
font-family: "SourceCodePro", $monospace;
|
|
}
|
|
}
|
|
|
|
.loading-spinner {
|
|
margin: 0;
|
|
}
|
|
}
|