mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2025-06-17 03:45:25 +02:00
Implemented Server Emoji Picker (#40)
This commit is contained in:
committed by
GitHub
parent
e44ab58aa8
commit
c832e69483
@ -385,6 +385,10 @@ a {
|
||||
}
|
||||
|
||||
.message_emoji:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#chatcontent .message_emoji:hover {
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
@ -418,4 +422,49 @@ p.mentioned span.chatmessage {
|
||||
white-space: pre-wrap;
|
||||
line-height: 15px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#emoji-picker {
|
||||
color: black;
|
||||
position: fixed;
|
||||
bottom: 12%;
|
||||
right: 1%;
|
||||
z-index: 500;
|
||||
width: 350px;
|
||||
height: 110px;
|
||||
max-width: 80%;
|
||||
max-height: 80%;
|
||||
background-color: #eceff1;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#emoji-picker-content {
|
||||
overflow: auto;
|
||||
height: 100%;
|
||||
padding: 5px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
#emoji-picker h6 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#emoji-tray-toggle {
|
||||
position: absolute;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
top: 14px;
|
||||
right: 30px;
|
||||
}
|
||||
|
||||
#emoji-tray-toggle > .btn-floating {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
#emoji-tray-toggle > .btn-floating > i {
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
top: -5px;
|
||||
}
|
Reference in New Issue
Block a user