2023-06-26 15:33:46 +00:00
|
|
|
.card {
|
|
|
|
|
border-radius: $border-radius;
|
|
|
|
|
border: 1px solid $ui-fleet-black-10;
|
2024-02-08 16:56:32 +00:00
|
|
|
// TODO - update this to be 40px per style guide
|
2023-06-26 15:33:46 +00:00
|
|
|
padding: $pad-large;
|
|
|
|
|
|
2023-10-10 22:00:45 +00:00
|
|
|
// radius styles
|
Update UI for software self-service features (#19244)
Issues https://github.com/fleetdm/fleet/issues/17587,
https://github.com/fleetdm/fleet/issues/18836,
https://github.com/fleetdm/fleet/issues/18837,
https://github.com/fleetdm/fleet/pull/18339, and
https://github.com/fleetdm/fleet/pull/18340
# TODOS
- Integrate backend
- Unit/integration tests
- Various todos noted in comments
- Cleanup styles and organization of components (de-duplicating and
consolidating where possible)
- Activity feed updates (if any)
# Checklist for submitter
If some of the following don't apply, delete the relevant line.
<!-- Note that API documentation changes are now addressed by the
product design team. -->
- [ ] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [ ] Input data is properly validated, `SELECT *` is avoided, SQL
injection is prevented (using placeholders for values in statements)
- [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for
new osquery data ingestion features.
- [ ] Added/updated tests
- [ ] If database migrations are included, checked table schema to
confirm autoupdate
- For database migrations:
- [ ] Checked schema for all modified table for columns that will
auto-update timestamps during migration.
- [ ] Confirmed that updating the timestamps is acceptable, and will not
cause unwanted side effects.
- [ ] Ensured the correct collation is explicitly set for character
columns (`COLLATE utf8mb4_unicode_ci`).
- [ ] Manual QA for all new/changed functionality
- For Orbit and Fleet Desktop changes:
- [ ] Manual QA must be performed in the three main OSs, macOS, Windows
and Linux.
- [ ] Auto-update manual QA, from released version of component to new
version (see [tools/tuf/test](../tools/tuf/test/README.md)).
---------
Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
2024-05-31 10:09:53 +00:00
|
|
|
|
2023-10-10 22:00:45 +00:00
|
|
|
&__radius-small {
|
|
|
|
|
border-radius: $border-radius;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__radius-medium {
|
Update UI for software self-service features (#19244)
Issues https://github.com/fleetdm/fleet/issues/17587,
https://github.com/fleetdm/fleet/issues/18836,
https://github.com/fleetdm/fleet/issues/18837,
https://github.com/fleetdm/fleet/pull/18339, and
https://github.com/fleetdm/fleet/pull/18340
# TODOS
- Integrate backend
- Unit/integration tests
- Various todos noted in comments
- Cleanup styles and organization of components (de-duplicating and
consolidating where possible)
- Activity feed updates (if any)
# Checklist for submitter
If some of the following don't apply, delete the relevant line.
<!-- Note that API documentation changes are now addressed by the
product design team. -->
- [ ] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [ ] Input data is properly validated, `SELECT *` is avoided, SQL
injection is prevented (using placeholders for values in statements)
- [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for
new osquery data ingestion features.
- [ ] Added/updated tests
- [ ] If database migrations are included, checked table schema to
confirm autoupdate
- For database migrations:
- [ ] Checked schema for all modified table for columns that will
auto-update timestamps during migration.
- [ ] Confirmed that updating the timestamps is acceptable, and will not
cause unwanted side effects.
- [ ] Ensured the correct collation is explicitly set for character
columns (`COLLATE utf8mb4_unicode_ci`).
- [ ] Manual QA for all new/changed functionality
- For Orbit and Fleet Desktop changes:
- [ ] Manual QA must be performed in the three main OSs, macOS, Windows
and Linux.
- [ ] Auto-update manual QA, from released version of component to new
version (see [tools/tuf/test](../tools/tuf/test/README.md)).
---------
Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
2024-05-31 10:09:53 +00:00
|
|
|
border-radius: $border-radius-medium;
|
2023-10-10 22:00:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__radius-large {
|
Update UI for software self-service features (#19244)
Issues https://github.com/fleetdm/fleet/issues/17587,
https://github.com/fleetdm/fleet/issues/18836,
https://github.com/fleetdm/fleet/issues/18837,
https://github.com/fleetdm/fleet/pull/18339, and
https://github.com/fleetdm/fleet/pull/18340
# TODOS
- Integrate backend
- Unit/integration tests
- Various todos noted in comments
- Cleanup styles and organization of components (de-duplicating and
consolidating where possible)
- Activity feed updates (if any)
# Checklist for submitter
If some of the following don't apply, delete the relevant line.
<!-- Note that API documentation changes are now addressed by the
product design team. -->
- [ ] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [ ] Input data is properly validated, `SELECT *` is avoided, SQL
injection is prevented (using placeholders for values in statements)
- [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for
new osquery data ingestion features.
- [ ] Added/updated tests
- [ ] If database migrations are included, checked table schema to
confirm autoupdate
- For database migrations:
- [ ] Checked schema for all modified table for columns that will
auto-update timestamps during migration.
- [ ] Confirmed that updating the timestamps is acceptable, and will not
cause unwanted side effects.
- [ ] Ensured the correct collation is explicitly set for character
columns (`COLLATE utf8mb4_unicode_ci`).
- [ ] Manual QA for all new/changed functionality
- For Orbit and Fleet Desktop changes:
- [ ] Manual QA must be performed in the three main OSs, macOS, Windows
and Linux.
- [ ] Auto-update manual QA, from released version of component to new
version (see [tools/tuf/test](../tools/tuf/test/README.md)).
---------
Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
2024-05-31 10:09:53 +00:00
|
|
|
border-radius: $border-radius-large;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__radius-xlarge {
|
|
|
|
|
border-radius: $border-radius-xlarge;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__radius-xxlarge {
|
2023-10-10 22:00:45 +00:00
|
|
|
border-radius: $border-radius-xxlarge;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// box shadow styles
|
|
|
|
|
&__shadow {
|
|
|
|
|
box-shadow: $box-shadow;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 14:46:33 +00:00
|
|
|
&__padding-small {
|
|
|
|
|
padding: $pad-small;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__padding-medium {
|
|
|
|
|
padding: $pad-medium;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__padding-large {
|
|
|
|
|
padding: $pad-large;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__padding-xlarge {
|
|
|
|
|
padding: $pad-xlarge;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__padding-xxlarge {
|
|
|
|
|
padding: $pad-xxlarge;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-20 15:15:10 +00:00
|
|
|
&__padding-xxxlarge {
|
|
|
|
|
padding: $pad-xxxlarge;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-04 20:47:42 +00:00
|
|
|
// 40px padding
|
2024-03-26 14:46:33 +00:00
|
|
|
// TODO: remove when we've replaced all instances of largePadding with
|
|
|
|
|
// paddingSize prop
|
2024-03-04 20:47:42 +00:00
|
|
|
&__large-padding {
|
|
|
|
|
padding: $pad-xxlarge;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 22:00:45 +00:00
|
|
|
// color styles
|
2023-06-26 15:33:46 +00:00
|
|
|
&__white {
|
|
|
|
|
background-color: $core-white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__gray {
|
|
|
|
|
background-color: $ui-off-white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__purple {
|
|
|
|
|
background-color: $ui-vibrant-blue-10;
|
|
|
|
|
border-color: $ui-vibrant-blue-50;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__yellow {
|
|
|
|
|
background-color: $ui-yellow-banner;
|
|
|
|
|
border-color: $ui-yellow-banner-outline;
|
|
|
|
|
}
|
|
|
|
|
}
|