-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
executable file
·57 lines (43 loc) · 1.01 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#wiki__text{
/*display:block;*/
}
/* Sample */
.textcomplete-dropdown.dropdown-menu {
border: 1px solid #ddd;
background-color: white;
max-height: 200px;
overflow: auto;
overflow-x : -moz-hidden-unscrollable;
overflow-x : hidden;
}
.textcomplete-dropdown.dropdown-menu li {
border-top: 1px solid #ddd;
padding: 2px 5px;
margin:0px;
white-space: nowrap;
}
.textcomplete-dropdown.dropdown-menu li.textcomplete-header,
.textcomplete-dropdown.dropdown-menu li.textcomplete-footer{
text-align:center;
color: #000;
}
.textcomplete-dropdown.dropdown-menu li a {
color: #000;
margin-right: 15px;
}
.textcomplete-dropdown.dropdown-menu li:first-child {
border-top: none;
}
.textcomplete-dropdown.dropdown-menu li:hover,
.dropdown-menu .active {
background-color: rgb(110, 183, 219);
}
/* SHOULD not modify */
.textcomplete-dropdown.dropdown-menu {
list-style: none;
padding: 0;
margin: 0;
}
.textcomplete-dropdown.dropdown-menu a:hover {
cursor: pointer;
}