fleet/frontend/components/forms/fields/SelectTargetsDropdown/_styles.scss

225 lines
4.2 KiB
SCSS
Raw Normal View History

.target-select {
&__label {
font-size: $x-small;
color: $core-fleet-black;
display: block;
UI – refactor forms and form fields (#16159) ## 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** ![Screenshot 2024-01-17 at 11 49 14 AM](https://github.com/fleetdm/fleet/assets/61553566/14f209fb-31db-41ef-8e63-e0d8994698c1) **Edit query form** ![Screenshot 2024-01-17 at 11 50 35 AM](https://github.com/fleetdm/fleet/assets/61553566/b07e70ea-3095-4e4f-be73-95a3c499839b) **Add hosts modal** ![Screenshot 2024-01-17 at 11 51 48 AM](https://github.com/fleetdm/fleet/assets/61553566/4ef1f410-a823-41d1-b2f6-ea8eb5231f93) ## 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>
2024-01-18 15:48:44 +00:00
margin: 0;
text-align: right;
&--error {
.target-select__select-targets {
color: $ui-error;
}
}
}
.Select.is-focused:not(.is-open) > .Select-control {
box-shadow: none;
border-color: $ui-fleet-black-75; // Override blue border on focus
}
&__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 $ui-fleet-black-75;
}
.Select-control {
min-height: 48px;
2025-09-29 17:10:41 +00:00
background-color: $core-fleet-white;
}
2016-11-23 21:10:32 +00:00
.Select-arrow {
height: 16px;
width: 16px;
margin-left: 6px;
border: none;
.Select-arrow-zone {
&:hover {
.Select-arrow {
border-top-color: transparent;
}
}
}
2017-02-24 19:11:33 +00:00
}
&:hover,
&.is-open {
.Select-arrow {
margin-left: 6px;
}
}
.Select-input {
height: 53px;
margin: 0;
padding: 0 0 0 10px;
> input {
line-height: 53px;
color: $core-fleet-black;
font-size: $x-small;
}
}
.target-select__arrow {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
border: none;
background: transparent;
cursor: pointer;
svg {
transition: transform 0.25s ease;
}
}
.target-select__arrow--open svg {
transform: rotate(180deg);
}
.Select-placeholder {
line-height: 53px;
color: $ui-fleet-black-75;
}
&.Select--multi {
.Select-option {
2016-11-23 21:10:32 +00:00
padding: 0;
&.is-disabled {
&.is-focused {
background-color: $ui-off-white; // Mimics table row hover, where action hover button is darker on hover $ui-fleet-black-5
border-radius: 8px;
}
}
2016-11-23 21:10:32 +00:00
&:last-child {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
}
}
2016-11-23 21:10:32 +00:00
}
.Select-menu-outer {
max-height: 500px;
height: 500px;
overflow: hidden; // outer still clips the menu so padding works
2016-11-23 21:10:32 +00:00
box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
position: absolute;
z-index: 10; // Ensure dropdown appears above other elements
2016-11-23 21:10:32 +00:00
.Select-menu {
height: 100%;
max-height: 100%;
overflow: hidden; // menu itself does not scroll
2016-11-23 21:10:32 +00:00
position: relative;
&::after {
2021-06-07 01:56:30 +00:00
@extend %fleeticon;
content: "\f03c";
2016-11-23 21:10:32 +00:00
font-size: 150px;
position: absolute;
left: 50%;
2016-11-23 21:10:32 +00:00
top: 50%;
margin-top: -75px;
opacity: 0.25;
width: 50%;
2016-11-23 21:10:32 +00:00
text-align: center;
}
}
.target-list {
display: flex;
height: 100%; // fills the menu height
}
.target-list__options {
flex: 1 1 auto;
min-width: 0;
overflow-y: auto; // only the options column scrolls
}
.target-list__option-details {
flex: 0 0 50%;
overflow: hidden; // details do not scroll with list
2016-11-23 21:10:32 +00:00
}
}
.Select-value {
border-radius: $border-radius;
2025-09-29 17:10:41 +00:00
background-color: $core-fleet-white;
2016-11-23 21:10:32 +00:00
.Select-value-icon {
height: 100%;
2016-11-23 21:10:32 +00:00
}
.Select-value-label {
font-size: $x-small;
color: $ui-fleet-black-75;
font-size: $x-small;
2016-11-23 21:10:32 +00:00
padding: 0 0 0 $pad-medium;
line-height: 34px;
}
}
.Select-clear {
width: 16px;
height: 16px;
border-radius: 0px;
margin-left: -4px;
margin-top: 6px;
2016-11-23 21:10:32 +00:00
}
.Select-clear-zone {
width: 30px;
margin-right: $pad-small;
}
.Select-arrow-zone {
width: 30px;
margin-right: 5px;
}
2016-11-23 21:10:32 +00:00
.Select-loading-zone {
margin-right: 10px;
2016-11-23 21:10:32 +00:00
}
&.is-empty {
.Select-menu-outer {
.Select-menu {
&::after {
content: "\f049";
2016-11-23 21:10:32 +00:00
font-size: 180px;
margin-top: -90px;
color: $ui-gray;
2016-11-23 21:10:32 +00:00
}
}
}
}
&.is-disabled {
.Select-value-label {
padding: 0 $pad-medium;
}
}
}