1/**
2 * Emoji plugin styles
3 *
4 * @license     GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 * @author      Patrick Brown <ptbrown@whoopdedo.org>
6 */
7
8.dropdown-menu {
9    list-style: none;
10    padding: 0;
11    margin: 0;
12    overflow: hidden;
13    font-size: .95em;
14    border: 1px solid @ini_border;
15    background-color: @ini_background_alt;
16    a:hover {
17        cursor: pointer;
18    }
19
20    li {
21        letter-spacing: 0;
22        display: block;
23        float: none;
24        margin: 0;
25        padding: 0;
26        border: none;
27        &:before {
28            display: none;
29        }
30
31        a {
32            display: block;
33            height: 100%;
34            line-height: 1.83em;
35            padding: 0 1.54em 0 .615em;
36            color: @ini_text;
37            text-decoration: none !important;
38        }
39    }
40    .active,
41    li:hover {
42        background: @ini_link;
43        color: @ini_background;
44
45        a {
46            color: inherit;
47        }
48    }
49
50    li .emojione {
51        vertical-align: middle;
52        font-size: 1.23em;
53        width: 1em;
54        height: 1em;
55        top: -1px;
56        margin: 0 .3em 0 0;
57        min-width: 15px;
58        min-height: 15px;
59    }
60
61    .textcomplete-footer {
62        margin-top: .3em;
63        background: @ini_background_neu;
64
65        a {
66            color: @ini_text_neu;
67            text-decoration: none;
68            text-transform: uppercase;
69            letter-spacing: .05em;
70            line-height: 2.1818em;
71            padding: 0 1.3em 0 2.637em;
72            font-size: .84em;
73        }
74
75        .arrow {
76            margin-left: .67em;
77            font-size: 1.25em;
78        }
79    }
80
81} /* .dropdown-menu */
82