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