| 1 |
@import "./global/colors.css"; |
| 2 |
|
| 3 |
.ep-autosuggest-container { |
| 4 |
position: relative; |
| 5 |
|
| 6 |
& .ep-autosuggest { |
| 7 |
background: var(--ep-c-white); |
| 8 |
border: 1px solid var(--ep-c-white-gray); |
| 9 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 10 |
display: none; |
| 11 |
position: absolute; |
| 12 |
|
| 13 |
width: 100%; |
| 14 |
z-index: 200; |
| 15 |
|
| 16 |
& > ul { |
| 17 |
list-style: none; |
| 18 |
/* stylelint-disable-next-line declaration-no-important */ |
| 19 |
margin: 0 !important; |
| 20 |
|
| 21 |
/* stylelint-disable-next-line max-nesting-depth */ |
| 22 |
& > li { |
| 23 |
font-family: sans-serif; |
| 24 |
|
| 25 |
/* stylelint-disable max-nesting-depth */ |
| 26 |
/* stylelint-disable-next-line selector-no-qualifying-type */ |
| 27 |
& > a.autosuggest-link { |
| 28 |
color: var(--ep-c-black); |
| 29 |
cursor: pointer; |
| 30 |
display: block; |
| 31 |
padding: 2px 10px; |
| 32 |
|
| 33 |
&:hover, |
| 34 |
&:active { |
| 35 |
background-color: var(--ep-c-medium-white); |
| 36 |
text-decoration: none; |
| 37 |
} |
| 38 |
} |
| 39 |
/* stylelint-enable max-nesting-depth */ |
| 40 |
} |
| 41 |
} |
| 42 |
} |
| 43 |
|
| 44 |
& .selected { |
| 45 |
background-color: var(--ep-c-medium-white); |
| 46 |
text-decoration: none; |
| 47 |
} |
| 48 |
} |
| 49 |
|