PluginProbe
ElasticPress / 5.3.5
ElasticPress v5.3.5
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
elasticpress / assets / css / autosuggest.css

autosuggest.css in ElasticPress 5.3.5, at assets/css/autosuggest.css

49 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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