fleet/frontend/components/forms/fields/ShadowBoxInput/styles.scss
Mike Stone e2a5502e21 Select targets (#340)
* Api client get targets

* Allow entities to parse full api response

* responsive nav style fixes

* Add disabled prop to button

* Add targets from API to target select input

* customize target rendering in input field

* call API on select target input change

* display # hosts selected

* Adds new icons to icon font

* Customize select targets input options

* Update directory structure

* restructure select targets input

* Adds hosts to labels

* Host modal styles

* ShadowBoxInput component

* TargetInfoModal for labels

* consistent entity response in api client stubs

* Fix bug removing multiple hosts in target select input

* change Button component to use css classes
2016-10-27 12:14:30 -04:00

24 lines
465 B
SCSS

.shadow-box-input {
&__icon {
color: $accentMedium;
font-size: $medium;
position: absolute;
right: 6px;
top: 12px;
}
&__input {
border: 1px solid $accentMedium;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.12);
color: $textMedium;
font-size: $small;
padding-left: 4px;
&::placeholder {
color: $textMedium;
font-size: $small;
}
}
&__wrapper {
display: inline-block;
position: relative;
}
}