mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Creates new PackComposerPage at /packs/new * Creates PackForm component * Adds PackForm to PackComposerPage * Creates QueriesListItem * Creates QueriesList * Creates QueriesListWrapper * Get all queries when the Packs Composer Page loads * Form HOC handles updates to formData prop * Creates form to configure scheduled queries * QueriesListWrapper renders ConfigurePackQueryForm * search queries input filters queries list * Empty state text * create pack when user submits the new pack form * Adds Edit pack page to /packs/:pack_id/edit * API client - get scheduled queries for a pack * API client - create scheduled query * Redux config for scheduled queries * Remove scheduled queries from packs * Add labels to pack on create * Add disabled state to the select targets dropdown * Adds edit route and pushes to new route on edit click * Adds cancel button to edit pack form * Adds Checkbox that selects all scheduled queries in table
39 lines
655 B
SCSS
39 lines
655 B
SCSS
.search-pack-query {
|
|
&__title {
|
|
font-size: 18px;
|
|
font-weight: $bold;
|
|
letter-spacing: -0.5px;
|
|
color: $text-dark;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.form-field--dropdown {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.ace-kolide {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
&__description {
|
|
margin: 0 0 30px;
|
|
|
|
h2 {
|
|
font-size: 16px;
|
|
font-weight: $bold;
|
|
letter-spacing: -0.5px;
|
|
color: $text-dark;
|
|
border-bottom: 1px solid #eaeefb;
|
|
padding: 0 0 9px;
|
|
margin: 0 0 9px;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 10px;
|
|
font-size: 14px;
|
|
font-weight: $normal;
|
|
line-height: 1.71;
|
|
color: $text-medium;
|
|
}
|
|
}
|
|
}
|