forked from podio/jquery-mentions-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.mentionsInput.scss
123 lines (102 loc) · 2.23 KB
/
jquery.mentionsInput.scss
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.mentions-input-box {
position: relative;
background: #fff;
textarea {
width: 100%;
display: block;
height: 18px;
padding: 9px;
border: 1px solid #dcdcdc;
border-radius: 3px;
overflow: hidden;
background: transparent;
position: relative;
outline: 0;
resize: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.mentions {
position: absolute;
left: 1px;
right: 0;
top: 1px;
bottom: 0;
padding: 9px;
color: #fff;
overflow: hidden;
white-space: pre-wrap;
word-wrap: break-word;
> div {
color: #fff;
white-space: pre-wrap;
width: 100%;
> strong {
font-weight: normal;
background: #d8dfea;
> span {
filter: progid:DXImageTransform.Microsoft.Alpha(opacity = 0);
}
}
}
}
.mentions-autocomplete-list {
display: none;
background: #fff;
border: 1px solid #b2b2b2;
position: absolute;
left: 0;
right: 0;
z-index: 10000;
margin-top: -2px;
border-radius: 5px;
border-top-right-radius: 0;
border-top-left-radius: 0;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.148438);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.148438);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.148438);
ul {
margin: 0;
padding: 0;
li {
background-color: #fff;
padding: 0 5px;
margin: 0;
width: auto;
border-bottom: 1px solid #eee;
height: 26px;
line-height: 26px;
overflow: hidden;
cursor: pointer;
list-style: none;
white-space: nowrap;
&:last-child {
border-radius: 5px;
}
&:hover,
&.active {
background-color: #f2f2f2;
}
> img,
> div.icon {
width: 16px;
height: 16px;
float: left;
margin-top: 5px;
margin-right: 5px;
-moz-background-origin: 3px;
border-radius: 3px;
}
em {
font-weight: bold;
font-style: none;
}
b {
background: #ffff99;
font-weight: normal;
}
}
}
}
}