2024-12-17 16:41:57 +00:00
|
|
|
.target-label-selector {
|
2025-02-24 21:01:55 +00:00
|
|
|
width: 100%;
|
2024-12-17 16:41:57 +00:00
|
|
|
font-size: $x-small;
|
|
|
|
|
|
|
|
|
|
&__custom-label-chooser {
|
2025-03-12 23:07:10 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: $pad-medium;
|
2026-04-20 15:09:01 +00:00
|
|
|
|
|
|
|
|
// Hardcoded to fit all 3 custom target options (Exclude any, Include all,
|
|
|
|
|
// Include any) without scrolling
|
|
|
|
|
.Select-menu-outer {
|
|
|
|
|
max-height: 260px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Select-menu {
|
|
|
|
|
max-height: 244px;
|
|
|
|
|
}
|
2024-12-17 16:41:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__checkboxes {
|
|
|
|
|
display: flex;
|
2026-04-09 13:16:54 +00:00
|
|
|
max-height: 189px; // Fits 5 options before scrolling
|
2024-12-17 16:41:57 +00:00
|
|
|
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 {
|
2026-04-09 13:16:54 +00:00
|
|
|
padding-left: $pad-small;
|
2024-12-17 16:41:57 +00:00
|
|
|
}
|
|
|
|
|
}
|