You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
636 B
37 lines
636 B
7 years ago
|
// Autocomplete
|
||
|
.form-autocomplete {
|
||
|
position: relative;
|
||
|
|
||
|
.form-autocomplete-input {
|
||
|
align-content: flex-start;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
height: auto;
|
||
|
min-height: $unit-8;
|
||
|
padding: $unit-h;
|
||
|
|
||
|
&.is-focused {
|
||
|
@include control-shadow();
|
||
|
border-color: $primary-color;
|
||
|
}
|
||
|
|
||
|
.form-input {
|
||
|
border-color: transparent;
|
||
|
box-shadow: none;
|
||
|
display: inline-block;
|
||
|
flex: 1 0 auto;
|
||
|
height: $unit-6;
|
||
|
line-height: $unit-4;
|
||
|
margin: $unit-h;
|
||
|
width: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.menu {
|
||
|
left: 0;
|
||
|
position: absolute;
|
||
|
top: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|