PluginProbe
ElasticPress / 4.2.0
ElasticPress v4.2.0
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 4.2.0, at assets/css/autosuggest.css

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