fleet/frontend/components/queries/QueryComposer/_styles.scss
Mike Stone f099b2ae22 Create packs (#516)
* 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
2016-12-21 12:25:54 -05:00

32 lines
470 B
SCSS

.query-composer {
&__btn-wrapper {
margin-top: $base;
text-align: right;
}
&__save-query-btn {
margin-right: $xsmall;
}
&__text-editor-wrapper {
margin: $base 0;
}
&__title {
color: $text-medium;
display: inline-block;
font-size: $large;
}
&__wrapper {
padding: $base;
h1 {
font-size: $large;
font-weight: $light;
letter-spacing: 1.2px;
color: $text-medium;
margin: 0;
}
}
}