Skip to content

Commit 8aa32fd

Browse files
committed
Initial commit
Should be considered buggy. Not yet fir for public consumption.
0 parents  commit 8aa32fd

14 files changed

+1617
-0
lines changed

autocomplete/autocomplete.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
ul.shortcode-suggest{
3+
display: none;
4+
position: absolute;
5+
top: 0px;
6+
left: 0px;
7+
border: 1px solid #dfdfdf;
8+
border-bottom: none;
9+
/*-webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
10+
-moz-box-shadow : 0 4px 5px rgba(0,0,0,.15);
11+
-o-box-shadow : 0 4px 5px rgba(0,0,0,.15);
12+
box-shadow : 0 4px 5px rgba(0,0,0,.15);*/
13+
cursor: default;
14+
padding: 0;
15+
list-style: none;
16+
z-index: 500;
17+
background: transparent;
18+
max-width: 400px;
19+
}
20+
21+
ul.shortcode-suggest > li:hover,
22+
ul.shortcode-suggest > li[data-selected=true]{
23+
background: #21759b;
24+
color: #fff;
25+
}
26+
27+
ul.shortcode-suggest > li{
28+
background: #f5f5f5;
29+
line-height: 1;
30+
padding: 10px 20px;
31+
margin-bottom: 0;
32+
border-bottom: 1px solid #dfdfdf;
33+
font-size: 14px;
34+
}
35+
36+
ul.shortcode-suggest mark
37+
{
38+
/*background: transparent;*/
39+
/*border-bottom: 1px solid #dfdfdf;*/
40+
}
41+
42+
ul.shortcode-suggest .docs
43+
{
44+
margin-top: 10px;
45+
line-height: 1.2;
46+
font-size: 10px;
47+
color: #999;
48+
}
49+
50+
ul.shortcode-suggest > li:hover .docs,
51+
ul.shortcode-suggest > li[data-selected=true] .docs
52+
{
53+
color: #fff;
54+
}
55+

0 commit comments

Comments
 (0)