jquery.emoji.css
2.92 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.emoji_btn {
position: absolute;
display: inline-block;
cursor: pointer;
width: 25px;
height: 25px;
}
.emoji_container * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.emoji_container {
display: none;
position: absolute;
background-color: #fff;
border: 1px solid #bfbfbf;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.176);
}
.emoji_container ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.emoji_content {
height: 277px;
overflow-y: auto;
padding: 5px;
}
.emoji_content ul {
padding-top: 1px;
padding-left: 1px;
}
.emoji_content ul li {
width: 54px;
height: 54px;
float: left;
border: 1px solid #e3e3e3;
margin-top: -1px;
margin-left: -1px;
}
.emoji_content ul li a {
display: block;
line-height: 54px;
text-align: center;
cursor: pointer;
}
.emoji_content ul li a img {
vertical-align: middle;
max-width: 30px;
max-height: 30px;
}
.emoji_content .mCSB_scrollTools {
width: 10px;
}
.emoji_content .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .emoji_content .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
margin: 5px 0;
}
.emoji_tab {
background-color: #f7f7f7;
border-top: 1px solid #e3e3e3;
color: #666;
height: 32px;
position: relative;
}
.emoji_tab_prev {
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-right: 4px dashed;
cursor: pointer;
left: 8px;
top: 12px;
position: absolute;
display: inline-block;
height: 0;
vertical-align: middle;
width: 0;
}
.emoji_tab_next {
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 4px dashed;
cursor: pointer;
right: 7px;
top: 12px;
position: absolute;
display: inline-block;
height: 0;
vertical-align: middle;
width: 0;
}
.emoji_tab_list {
left: 22px;
overflow: hidden;
position: absolute;
top: 0;
}
.emoji_tab_list ul {
width: 1500px;
transition: all 0.8s ease 0s;
}
.emoji_tab_list ul li {
border-top: 0 none;
cursor: pointer;
float: left;
height: 22px;
line-height: 22px;
margin: 5px 4px 0 0;
font-size: 12px;
border-radius: 3px;
text-align: center;
width: 68px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.emoji_tab_list ul li:hover {
background: #e5e5e5;
}
.emoji_tab_list ul li.selected {
color: #fff;
background: steelblue;
}
.emoji_preview {
position: absolute;
top: 0;
border: 1px solid #c8c8c8;
border-radius: 50%;
width: 65px;
height: 65px;
background: #ffffff;
text-align: center;
line-height: 65px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.176);
z-index: 2;
display: none;
}
.emoji_preview img {
vertical-align: middle;
max-width: 42px;
max-height: 42px;
}