Lines 4426-4431
div .suggestion_note {
Link Here
|
4426 |
} |
4426 |
} |
4427 |
} |
4427 |
} |
4428 |
|
4428 |
|
|
|
4429 |
/* Elasticsearch autocomplete menu */ |
4430 |
.autocomplete { |
4431 |
/*the container must be positioned relative:*/ |
4432 |
position: relative; |
4433 |
display: inline-block; |
4434 |
} |
4435 |
|
4436 |
.autocomplete-items { |
4437 |
position: absolute; |
4438 |
border: 1px solid #d4d4d4; |
4439 |
border-bottom: none; |
4440 |
border-top: none; |
4441 |
z-index: 99; |
4442 |
/*position the autocomplete items to be the same width as the container:*/ |
4443 |
|
4444 |
div { |
4445 |
padding: 10px; |
4446 |
cursor: pointer; |
4447 |
background-color: #fff; |
4448 |
border-bottom: 1px solid #d4d4d4; |
4449 |
|
4450 |
&:hover { |
4451 |
/*when hovering an item:*/ |
4452 |
background-color: #e9e9e9; |
4453 |
} |
4454 |
|
4455 |
&.autocomplete-active { |
4456 |
/*when navigating through the items using the arrow keys:*/ |
4457 |
background-color: lighten(#85CA11, 45%); |
4458 |
} |
4459 |
} |
4460 |
} |
4461 |
/* /Elasticsearch autocomplete menu */ |
4462 |
|
4429 |
@media (min-width: 200px) { |
4463 |
@media (min-width: 200px) { |
4430 |
|
4464 |
|
4431 |
} |
4465 |
} |