autosuggest.css in ElasticPress 4.3.0, at assets/css/autosuggest.css
| 1 | .ep-autosuggest-container { |
| 2 | position: relative; |
| 3 | |
| 4 | & .ep-autosuggest { |
| 5 | background: #fff; |
| 6 | border: 1px solid #ccc; |
| 7 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 8 | display: none; |
| 9 | position: absolute; |
| 10 | |
| 11 | width: 100%; |
| 12 | z-index: 200; |
| 13 | |
| 14 | & > ul { |
| 15 | list-style: none; |
| 16 | margin: 0 !important; |
| 17 | |
| 18 | & > li { |
| 19 | font-family: sans-serif; |
| 20 | |
| 21 | & > a.autosuggest-link { |
| 22 | color: #000; |
| 23 | cursor: pointer; |
| 24 | display: block; |
| 25 | padding: 2px 10px; |
| 26 | |
| 27 | &:hover, |
| 28 | &:active { |
| 29 | background-color: #eee; |
| 30 | text-decoration: none; |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | & .selected { |
| 38 | background-color: #eee; |
| 39 | text-decoration: none; |
| 40 | } |
| 41 | } |
| 42 |