Lines 4617-4622
div .suggestion_note {
Link Here
|
4617 |
white-space:nowrap |
4617 |
white-space:nowrap |
4618 |
} |
4618 |
} |
4619 |
} |
4619 |
} |
|
|
4620 |
/* Elasticsearch autocomplete menu */ |
4621 |
.autocomplete { |
4622 |
/*the container must be positioned relative:*/ |
4623 |
position: relative; |
4624 |
display: inline-block; |
4625 |
} |
4626 |
|
4627 |
.autocomplete-items { |
4628 |
position: absolute; |
4629 |
border: 1px solid #d4d4d4; |
4630 |
border-bottom: none; |
4631 |
border-top: none; |
4632 |
z-index: 99; |
4633 |
/*position the autocomplete items to be the same width as the container:*/ |
4634 |
|
4635 |
div { |
4636 |
padding: 10px; |
4637 |
cursor: pointer; |
4638 |
background-color: #fff; |
4639 |
border-bottom: 1px solid #d4d4d4; |
4640 |
|
4641 |
&:hover { |
4642 |
/*when hovering an item:*/ |
4643 |
background-color: #e9e9e9; |
4644 |
} |
4645 |
|
4646 |
&.autocomplete-active { |
4647 |
/*when navigating through the items using the arrow keys:*/ |
4648 |
background-color: lighten(#85CA11, 45%); |
4649 |
} |
4650 |
} |
4651 |
} |
4652 |
/* /Elasticsearch autocomplete menu */ |
4620 |
|
4653 |
|
4621 |
@media (min-width: 200px) { |
4654 |
@media (min-width: 200px) { |
4622 |
|
4655 |
|