mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 21:48:48 +00:00
## For #23830 No labels state –> label present state in 4 places:  - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
45 lines
761 B
SCSS
45 lines
761 B
SCSS
.target-label-selector {
|
|
width: 100%;
|
|
font-size: $x-small;
|
|
|
|
&__custom-label-chooser {
|
|
margin-top: $pad-medium;
|
|
}
|
|
|
|
&__description {
|
|
margin: $pad-medium 0;
|
|
}
|
|
|
|
&__checkboxes {
|
|
display: flex;
|
|
max-height: 187px;
|
|
flex-direction: column;
|
|
border-radius: $border-radius;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
overflow-y: auto;
|
|
|
|
.loading-spinner {
|
|
margin: 69.5px auto;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
width: 100%;
|
|
padding: $pad-small $pad-medium;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid $ui-fleet-black-10;
|
|
}
|
|
|
|
.form-field--checkbox {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
&__label-name {
|
|
padding-left: $pad-large;
|
|
}
|
|
}
|