mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 18:51:03 +00:00
## Addresses #15325 - Define shared global styles for forms (`form` and `.form`s) and `.form-field`s - Sweep through the app, updating each form from being locally styled to first prioritizing the global styles and only defining local styles where needed for custom behavior - Remove lots of unnecessary nesting of elements - Other small bug fixes and improvements ### Samples, before (L) | after (R): **Save query modal**  **Edit query form**  **Add hosts modal**  ## QA Plan: @xpkoala here's the same list from the issue, freshly de-checked for you to use if it's helpful: * Please check error states of each field #### Specified by issue: ##### In "Save query" modal: - [ ] Reduce space between checkboxes and their help text to 8px/0.5rem for the following fields: - [ ] Observers can run - [ ] Discard data - [ ] Update the following checkbox labels to have normal font weight (not bold): - [ ] Discard data ##### On "Edit query" page: - [ ] Update the following checkbox labels to have normal font weight (not bold): - [ ] Observers can run - [ ] Discard data ##### In "Add hosts" modal, for copy text fields: - [ ] match typical form form field styles - [ ] Adjust the positioning of the copy icon to keep it from being too far down ##### Further locations to check - [ ] ChangeEmailForm.jsx - [ ] ChangePasswordForm.jsx - [ ] ConfirmInviteForm.jsx - [ ] ConfirmSSOInviteForm.jsx - [ ] EnrollSecretModal.tsx - [ ] ForgotPasswordForm.jsx - [ ] LoginForm.tsx - [ ] EditPackForm.tsx - [ ] (New)PackForm.tsx - [ ] AdminDetails.jsx - [ ] ConfirmationPage.tsx - [ ] FleetDetails.jsx - [ ] OrgDetails.jsx - [ ] ResetPasswordForm.tsx - [ ] UserSettingsForm.jsx - [ ] EditTeamModal.tsx - [ ] IdpSection.tsx - [ ] DeleteIntegrationModal.tsx - [ ] IntegrationForm.tsx - [ ] EndUserMigrationSection.tsx - [ ] RequestCSRModal.tsx - [ ] Advanced.tsx - [ ] Agents.tsx - [ ] FleetDesktop.tsx - [ ] HostStatusWebhook.tsx front - [ ] Info.tsx - [ ] Smtp.tsx - [ ] Sso.tsx - [ ] Statistics.tsx - [ ] WebAddress.tsx - [ ] CreateTeamModal.tsx - [ ] DeleteTeamModal.tsx - [ ] EditTeamModal.tsx - [ ] AgentOptionsPage.tsx - updated the layout of this page to align with the rest of the forms in the UI – can easily revert if it's not what we want - [ ] AddMemberModal.tsx - [ ] RemoveMemberModal.tsx - [ ] UserForm.tsx - Used by both `EditUserModal` and `CreateUserModal` - A few different conditions that cause different rendering behavior - [ ] DeleteHostModal.tsx - [ ] TransferHostModal.tsx - [ ] LabelForm.tsx - [ ] MacOSTargetForm.tsx - [ ] WindowsTargetForm.tsx - [ ] BootstrapPackageListltem.ts - [ ] EndUserAuthForm.tsx - [ ] PackQueryEditorModal.tsx - [ ] PolicyForm.tsx - [ ] SaveNewPolicyModal.tsx - [ ] ConfirmSaveChangesModal.tsx - [ ] Query automations modal - [ ] Policy automations modal - addresses #16010 - [ ] SoftwareAutomationsModal ## Checklist for submitter - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com>
211 lines
3.9 KiB
SCSS
211 lines
3.9 KiB
SCSS
.target-select {
|
|
&__label {
|
|
font-size: $x-small;
|
|
color: $core-fleet-black;
|
|
display: block;
|
|
margin: 0;
|
|
text-align: right;
|
|
|
|
&--error {
|
|
.target-select__select-targets {
|
|
color: $ui-error;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__select-targets {
|
|
float: left;
|
|
font-weight: $bold;
|
|
}
|
|
|
|
&__targets-count {
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
color: $core-fleet-black;
|
|
}
|
|
|
|
&.Select {
|
|
border-radius: $border-radius;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
|
|
&.is-focused,
|
|
&:hover {
|
|
border: 1px solid $core-vibrant-blue;
|
|
}
|
|
|
|
.Select-control {
|
|
min-height: 48px;
|
|
background-color: $ui-light-grey;
|
|
}
|
|
|
|
.Select-arrow {
|
|
content: url("../assets/images/icon-chevron-black-16x16@2x.png");
|
|
height: 16px;
|
|
width: 16px;
|
|
margin-left: 6px;
|
|
border: none;
|
|
|
|
.Select-arrow-zone {
|
|
&:hover {
|
|
.Select-arrow {
|
|
border-top-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&.is-open {
|
|
.Select-arrow {
|
|
content: url("../assets/images/icon-chevron-blue-16x16@2x.png");
|
|
margin-left: 6px;
|
|
}
|
|
}
|
|
|
|
.Select-input {
|
|
height: 53px;
|
|
margin: 0;
|
|
padding: 0 0 0 10px;
|
|
|
|
> input {
|
|
line-height: 53px;
|
|
color: $core-fleet-black;
|
|
font-size: $small;
|
|
}
|
|
}
|
|
|
|
.Select-placeholder {
|
|
line-height: 53px;
|
|
font-size: $small;
|
|
color: $ui-fleet-black-50;
|
|
}
|
|
|
|
&.Select--multi {
|
|
.Select-option {
|
|
padding: 0;
|
|
|
|
&.is-disabled {
|
|
&.is-focused {
|
|
background-color: $ui-vibrant-blue-10;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.Select-menu-outer {
|
|
max-height: 500px;
|
|
height: 500px;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
.Select-menu {
|
|
height: 498px;
|
|
max-height: 498px;
|
|
overflow: scroll;
|
|
position: relative;
|
|
|
|
&::after {
|
|
@extend %fleeticon;
|
|
content: "\f03c";
|
|
font-size: 150px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-top: -75px;
|
|
opacity: 0.25;
|
|
width: 50%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.target-list {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.Select-value {
|
|
border-radius: $border-radius;
|
|
background-color: $core-white;
|
|
|
|
.Select-value-icon {
|
|
height: 100%;
|
|
|
|
&::after {
|
|
content: url("../assets/images/icon-close-fleet-blue-16x16@2x.png");
|
|
transform: scale(0.5);
|
|
border-radius: 0px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
&:hover {
|
|
&::after {
|
|
content: url("../assets/images/icon-close-vibrant-blue-16x16@2x.png");
|
|
transform: scale(0.5);
|
|
}
|
|
}
|
|
}
|
|
|
|
.Select-value-label {
|
|
font-size: $small;
|
|
color: $ui-fleet-black-75;
|
|
font-size: $x-small;
|
|
padding: 0 0 0 $pad-medium;
|
|
line-height: 34px;
|
|
}
|
|
}
|
|
|
|
.Select-clear {
|
|
content: url("../assets/images/icon-close-fleet-blue-16x16@2x.png");
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 0px;
|
|
margin-left: -4px;
|
|
margin-top: 6px;
|
|
|
|
&:hover {
|
|
content: url("../assets/images/icon-close-vibrant-blue-16x16@2x.png");
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 0px;
|
|
}
|
|
}
|
|
|
|
.Select-clear-zone {
|
|
width: 30px;
|
|
}
|
|
|
|
.Select-arrow-zone {
|
|
width: 30px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.Select-loading-zone {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&.is-empty {
|
|
.Select-menu-outer {
|
|
.Select-menu {
|
|
&::after {
|
|
content: "\f049";
|
|
font-size: 180px;
|
|
margin-top: -90px;
|
|
color: $ui-gray;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-disabled {
|
|
.Select-value-label {
|
|
padding: 0 $pad-medium;
|
|
}
|
|
}
|
|
}
|