fleet/frontend/components/forms/fields/SelectTargetsInput/_styles.scss
Mike Stone b0e856c369 Update target select (#464)
* Stop sending click event to click handler prop

* Delineates between hosts & labels in dropdown options

* Render target details when a moreInfoTarget is present

* Remove moreInfoTarget when the select is closed

* Remove modal

* refactor formatting targets API response

* Adds + icon to dropdown options

* Restructures dropdown rendering
2016-11-14 12:32:13 -05:00

42 lines
723 B
SCSS

.target-select {
&.Select {
.Select-control {
height: 48px;
}
.Select-input {
height: 46px;
> input {
line-height: 30px;
padding: 8px 0;
}
}
.Select-placeholder {
line-height: 46px;
}
&.Select--multi {
.Select-option {
&.is-disabled {
&.is-focused {
.target-option__label-label,
.target-option__target-icon,
.target-option__delimeter,
.target-option__ip,
.target-option__more-info,
.target-option__icon {
color: $white;
}
}
}
}
.Select-value {
line-height: 1.9;
}
}
}
}