mirror of
https://github.com/fleetdm/fleet
synced 2026-05-03 03:17:21 +00:00
relates to #17031 Adds functionality to create manual labels in fleet. - [x] 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. - [x] Added/updated tests - [x] M0anual QA for all new/changed functionality --------- Co-authored-by: Martin Angers <martin.n.angers@gmail.com>
107 lines
2.1 KiB
SCSS
107 lines
2.1 KiB
SCSS
.targets-input {
|
|
position: relative;
|
|
|
|
&__hosts-search-dropdown {
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 70px;
|
|
left: 0;
|
|
z-index: 1;
|
|
background-color: $core-white;
|
|
border-radius: 0px 0px 8px 8px;
|
|
|
|
.table-container {
|
|
box-shadow: 0px 4px 10px rgba(52, 59, 96, 0.15);
|
|
border-radius: 0px 0px 8px 8px;
|
|
.data-table__wrapper {
|
|
overflow: auto;
|
|
}
|
|
|
|
&__data-table-block > div {
|
|
min-height: 89px;
|
|
}
|
|
|
|
// Properly vertically aligns host issue icon
|
|
.display_name__cell {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
|
|
.host-issue {
|
|
margin-left: $pad-xsmall;
|
|
display: inline-flex;
|
|
}
|
|
}
|
|
|
|
.data-table-block {
|
|
display: initial;
|
|
}
|
|
}
|
|
|
|
.empty-search,
|
|
.error-search {
|
|
padding-top: 72px;
|
|
padding-bottom: 72px;
|
|
min-height: 225px;
|
|
display: flex;
|
|
justify-content: center;
|
|
box-shadow: 0px 4px 10px rgba(52, 59, 96, 0.15);
|
|
box-sizing: border-box;
|
|
|
|
&__inner {
|
|
h4 {
|
|
margin: 0;
|
|
margin-bottom: 16px;
|
|
font-size: $small;
|
|
}
|
|
p {
|
|
margin: 0;
|
|
font-size: $x-small;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// hack because it's creating unwanted space
|
|
.table-container {
|
|
background-color: $core-white;
|
|
|
|
&__header {
|
|
display: none;
|
|
}
|
|
.data-table {
|
|
&__wrapper {
|
|
margin: 0;
|
|
}
|
|
|
|
// Properly vertically aligns host issue icon
|
|
.display_name__cell {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
|
|
.host-issue {
|
|
margin-left: $pad-xsmall;
|
|
display: inline-flex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&__hosts-selected-table {
|
|
margin-top: 8px;
|
|
|
|
.data-table__wrapper {
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.delete__cell {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
// override the default styles for the spinner.
|
|
// TODO: set better default styles for the spinner
|
|
.loading-spinner.centered {
|
|
margin: auto;
|
|
}
|
|
}
|