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

165 lines
3.3 KiB
SCSS
Raw Normal View History

.input-field {
line-height: $line-height;
2025-09-29 17:10:41 +00:00
background-color: $core-fleet-white;
border: solid 1px $ui-fleet-black-10;
border-radius: $border-radius;
font-size: $x-small;
padding: $pad-small $pad-medium;
color: $core-fleet-blue;
font-family: "Inter", sans-serif;
box-sizing: border-box;
2025-09-29 17:10:41 +00:00
height: 36px;
2022-10-05 14:43:54 +00:00
transition: border-color 100ms;
width: 100%;
&::placeholder {
color: $ui-fleet-black-50;
}
&:hover:not(.input-field--read-only) {
box-shadow: none;
2025-09-29 17:10:41 +00:00
border: 1px solid $ui-fleet-black-75-over;
}
&:active:not(.input-field--read-only),
&:focus:not(.input-field--read-only),
&:focus-visible:not(.input-field--read-only) {
2022-10-05 14:43:54 +00:00
box-shadow: none;
outline: 0;
2025-09-29 17:10:41 +00:00
border: 1px solid $ui-fleet-black-75-down;
2022-10-05 14:43:54 +00:00
}
2017-01-13 23:27:58 +00:00
&--disabled {
color: $ui-fleet-black-50;
.form-field__label,
.form-field__help-text {
color: $ui-fleet-black-50;
}
2017-01-13 23:27:58 +00:00
}
&--error {
color: $core-vibrant-red;
border: 1px solid $core-vibrant-red;
box-sizing: border-box;
border-radius: $border-radius;
2016-11-09 14:00:40 +00:00
&:focus {
border-color: $ui-error;
2025-09-29 17:10:41 +00:00
background-color: $core-fleet-white;
color: $core-fleet-black;
2016-11-09 14:00:40 +00:00
}
}
2016-11-09 14:00:40 +00:00
&__textarea {
min-height: 100px;
min-width: 100%;
2016-11-09 14:00:40 +00:00
max-width: 100%;
display: block;
2016-11-09 14:00:40 +00:00
}
&__label {
2016-11-09 14:00:40 +00:00
display: block;
font-size: $medium;
font-weight: $regular;
color: $core-fleet-black;
2016-11-09 14:00:40 +00:00
margin-bottom: $pad-xsmall;
&--error {
font-weight: $bold;
color: $ui-error;
}
}
2016-11-09 14:00:40 +00:00
&__wrapper {
margin-bottom: $pad-medium;
2016-11-09 14:00:40 +00:00
}
2016-12-16 15:54:49 +00:00
// Same styling as .form-field__help-text TODO: consider consolidating
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
&__help-text {
font-size: $x-small;
font-weight: $regular;
line-height: $line-height;
2016-12-16 15:54:49 +00:00
letter-spacing: 1px;
color: $core-fleet-blue;
2016-12-16 15:54:49 +00:00
code {
color: $ui-fleet-black-75;
background-color: $ui-light-grey;
padding: $pad-xxsmall;
font-family: "SourceCodePro", $monospace;
2016-12-16 15:54:49 +00:00
}
}
Update input action buttons app wide (#43906) <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #41147 See comment for images of all changes: https://github.com/fleetdm/fleet/issues/41147#issuecomment-4291447286 # 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. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Standardized and restyled action buttons (copy, show/hide secret, etc.) across the app for consistent appearance, sizing, hover states and keyboard focus outlines. * Improved input and textarea layouts so action buttons align neatly, copy/confirmation messages display correctly, and spacing adapts when actions are present. * **Documentation** * Added a changelog entry documenting the action-button styling and layout updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-21 23:54:05 +00:00
// Old-style textarea copy button (absolute positioned icon above textarea)
2025-04-23 18:42:30 +00:00
&__copy-wrapper {
display: flex;
align-items: center;
gap: $pad-xsmall;
position: absolute;
top: 3px; // vertically center
2025-04-23 18:42:30 +00:00
right: 0;
2025-09-29 17:10:41 +00:00
margin: 1px 4px;
background-color: $core-fleet-white;
Update input action buttons app wide (#43906) <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #41147 See comment for images of all changes: https://github.com/fleetdm/fleet/issues/41147#issuecomment-4291447286 # 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. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Standardized and restyled action buttons (copy, show/hide secret, etc.) across the app for consistent appearance, sizing, hover states and keyboard focus outlines. * Improved input and textarea layouts so action buttons align neatly, copy/confirmation messages display correctly, and spacing adapts when actions are present. * **Documentation** * Added a changelog entry documenting the action-button styling and layout updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-21 23:54:05 +00:00
&--text-area {
top: -30px;
}
}
&__input-container.copy-enabled {
position: relative;
Update input action buttons app wide (#43906) <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #41147 See comment for images of all changes: https://github.com/fleetdm/fleet/issues/41147#issuecomment-4291447286 # 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. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Standardized and restyled action buttons (copy, show/hide secret, etc.) across the app for consistent appearance, sizing, hover states and keyboard focus outlines. * Improved input and textarea layouts so action buttons align neatly, copy/confirmation messages display correctly, and spacing adapts when actions are present. * **Documentation** * Added a changelog entry documenting the action-button styling and layout updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-21 23:54:05 +00:00
}
// New input action buttons (bordered boxes beside input)
&__input-container--has-actions {
display: flex;
align-items: center;
gap: $pad-xsmall;
.input-field {
Update input action buttons app wide (#43906) <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #41147 See comment for images of all changes: https://github.com/fleetdm/fleet/issues/41147#issuecomment-4291447286 # 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. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Standardized and restyled action buttons (copy, show/hide secret, etc.) across the app for consistent appearance, sizing, hover states and keyboard focus outlines. * Improved input and textarea layouts so action buttons align neatly, copy/confirmation messages display correctly, and spacing adapts when actions are present. * **Documentation** * Added a changelog entry documenting the action-button styling and layout updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-21 23:54:05 +00:00
flex: 1;
min-width: 0;
}
}
&__action-buttons {
display: flex;
gap: $pad-xsmall;
flex-shrink: 0;
}
&__action-button-wrapper {
position: relative;
}
&__action-button {
@include bordered-icon-button;
.fleeticon {
width: 16px;
height: 16px;
}
}
&__copied-confirmation {
@include copy-message;
}
Update input action buttons app wide (#43906) <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #41147 See comment for images of all changes: https://github.com/fleetdm/fleet/issues/41147#issuecomment-4291447286 # 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. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Standardized and restyled action buttons (copy, show/hide secret, etc.) across the app for consistent appearance, sizing, hover states and keyboard focus outlines. * Improved input and textarea layouts so action buttons align neatly, copy/confirmation messages display correctly, and spacing adapts when actions are present. * **Documentation** * Added a changelog entry documenting the action-button styling and layout updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-21 23:54:05 +00:00
// Positioning for new bordered action buttons — float to the left of the button
&__action-button-wrapper &__copied-confirmation {
position: absolute;
top: 50%;
right: calc(100% + $pad-xsmall);
transform: translateY(-50%);
margin: 0;
white-space: nowrap;
pointer-events: none;
}
}
// Removes arrows on Firefox number fields
input[type="number"] {
-moz-appearance: textfield;
}