mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
fix: re-order multiselect and search boxes
This commit is contained in:
@@ -19,6 +19,15 @@
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.is-subsection {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
|
||||
.is-padded {
|
||||
padding: 0em 0em 0em 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.is-fixed-width {
|
||||
display: inline-block;
|
||||
width: 8em;
|
||||
|
||||
@@ -294,27 +294,29 @@
|
||||
</button>
|
||||
{{/if}}
|
||||
</div>
|
||||
<SearchBox
|
||||
@searchTerm={{mut this.searchTerm}}
|
||||
@onChange={{action this.resetPagination}}
|
||||
@placeholder="Search allocations..."
|
||||
@class="is-inline pull-right"
|
||||
@inputClass="is-compact"
|
||||
/>
|
||||
<MultiSelectDropdown
|
||||
data-test-allocation-status-facet
|
||||
@label="Status"
|
||||
@options={{this.optionsAllocationStatus}}
|
||||
@selection={{this.selectionStatus}}
|
||||
@onSelect={{action "setFacetQueryParam" "qpStatus"}}
|
||||
/>
|
||||
<MultiSelectDropdown
|
||||
data-test-allocation-task-group-facet
|
||||
@label="Task Group"
|
||||
@options={{this.optionsTaskGroups}}
|
||||
@selection={{this.selectionTaskGroup}}
|
||||
@onSelect={{action "setFacetQueryParam" "qpTaskGroup"}}
|
||||
/>
|
||||
<div class="pull-right is-subsection">
|
||||
<MultiSelectDropdown
|
||||
data-test-allocation-status-facet
|
||||
@label="Status"
|
||||
@options={{this.optionsAllocationStatus}}
|
||||
@selection={{this.selectionStatus}}
|
||||
@onSelect={{action "setFacetQueryParam" "qpStatus"}}
|
||||
/>
|
||||
<MultiSelectDropdown
|
||||
data-test-allocation-task-group-facet
|
||||
@label="Task Group"
|
||||
@options={{this.optionsTaskGroups}}
|
||||
@selection={{this.selectionTaskGroup}}
|
||||
@onSelect={{action "setFacetQueryParam" "qpTaskGroup"}}
|
||||
/>
|
||||
<SearchBox
|
||||
@searchTerm={{mut this.searchTerm}}
|
||||
@onChange={{action this.resetPagination}}
|
||||
@placeholder="Search allocations..."
|
||||
@inputClass="is-compact"
|
||||
@class="is-padded"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="boxed-section-body is-full-bleed">
|
||||
<ListPagination
|
||||
|
||||
Reference in New Issue
Block a user