You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.2 KiB
70 lines
1.2 KiB
10 months ago
|
/* @import "../../../styles/emoji-sprite"; */
|
||
|
|
||
|
.emoji {
|
||
|
width: 380px;
|
||
|
height: 186px;
|
||
|
bottom: 30px;
|
||
|
background: #fff;
|
||
|
z-index: 10;
|
||
|
padding: 10px;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-controller {
|
||
|
height: 36px;
|
||
|
overflow: hidden;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-controller li {
|
||
|
float: left;
|
||
|
width: 76px;
|
||
|
font-size: 12px;
|
||
|
line-height: 36px;
|
||
|
cursor: pointer;
|
||
|
text-align: center;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-controller li.active::after {
|
||
|
content: '';
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
background: #0689dd;
|
||
|
left: 0;
|
||
|
bottom: 4px;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-container {
|
||
|
height: 140px;
|
||
|
overflow-y: auto;
|
||
|
overflow-x: hidden;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-container li {
|
||
|
font-size: 0;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-container li a {
|
||
|
float: left;
|
||
|
overflow: hidden;
|
||
|
height: 35px;
|
||
|
transition: all ease-out .2s;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-container li a:hover {
|
||
|
background-color: #d8d8d8;
|
||
|
border-color: #d8d8d8;
|
||
|
}
|
||
|
|
||
|
.emoji .emoji-container li a span {
|
||
|
width: 25px;
|
||
|
height: 25px;
|
||
|
display: inline-block;
|
||
|
border: 1px solid transparent;
|
||
|
cursor: pointer;
|
||
|
}
|