Newer
Older
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
.rc-mentions {
display: inline-block;
position: relative;
white-space: pre-wrap;
}
.rc-mentions>textarea,
.rc-mentions-measure {
font-size: inherit;
font-size-adjust: inherit;
font-style: inherit;
font-variant: inherit;
font-stretch: inherit;
font-weight: inherit;
font-family: inherit;
padding: 0;
margin: 0;
line-height: inherit;
vertical-align: top;
overflow: inherit;
word-break: inherit;
white-space: inherit;
word-wrap: break-word;
overflow-x: initial;
overflow-y: auto;
text-align: inherit;
letter-spacing: inherit;
tab-size: inherit;
direction: inherit;
}
.rc-mentions>textarea {
border: none;
width: 100%;
}
.rc-mentions-measure {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
pointer-events: none;
color: transparent;
z-index: -1;
}
.rc-mentions-dropdown {
position: absolute;
}
.rc-mentions-dropdown-menu {
list-style: none;
margin: 0;
padding: 0;
}
.rc-mentions-dropdown-menu-item {
cursor: pointer;
}
.rc-mentions {
font-size: 20px;
border: 1px solid #999;
border-radius: 3px;
overflow: hidden;
}
.rc-mentions-dropdown {
border: 1px solid #999;
border-radius: 3px;
background: #FFF;
}
.rc-mentions-dropdown-menu-item {
padding: 4px 8px;
}
.rc-mentions-dropdown-menu-item-active {
background: #e6f7ff;
}
.rc-mentions-dropdown-menu-item-disabled {
opacity: 0.5;
}