mirror of
https://github.com/fleetdm/fleet
synced 2026-04-26 07:57:29 +00:00
<!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #39260 # Details Fixes the banner displayed when a team has no enroll secrets to match similar, non-dismissible warning banners, and corrects the padding between text and button in the "Add enroll secret" modal empty state. <img width="773" height="221" alt="image" src="https://github.com/user-attachments/assets/490f49f1-ccaa-47c7-8ba3-a7de2896d932" /> --- <img width="662" height="380" alt="image" src="https://github.com/user-attachments/assets/0f73b9b8-d625-4f40-ac8d-edb71e9f2a22" /> # Checklist for submitter If some of the following don't apply, delete the relevant line. - [X] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. ## Testing - [ ] Added/updated automated tests n/a, styling only - [X] QA'd all new/changed functionality manually See screenshots above
31 lines
557 B
SCSS
31 lines
557 B
SCSS
.enroll-secret-modal {
|
|
&__reveal-secret {
|
|
float: right;
|
|
text-decoration: none;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
background-color: $ui-off-white;
|
|
color: $core-fleet-blue;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
border-radius: $border-radius;
|
|
padding: 7px $pad-medium;
|
|
margin: $pad-large 0 0 44px;
|
|
}
|
|
|
|
&__error {
|
|
color: $ui-error;
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.empty-table__container {
|
|
margin: $pad-large auto $pad-medium;
|
|
gap: $pad-medium;
|
|
}
|
|
}
|