Add send message button

This commit is contained in:
Jeremy Zhang
2019-02-25 17:59:58 +00:00
parent 01bf4ccd43
commit b9091d4293
3 changed files with 39 additions and 2 deletions

View File

@ -915,7 +915,7 @@ p.mentioned span.chatmessage {
.wdt-emoji-picker {
bottom: 13px;
right: 10px;
right: 41px;
}
#wdt-emoji-search, #wdt-emoji-search:focus {
@ -930,6 +930,10 @@ p.mentioned span.chatmessage {
#upload-file-btn {
display: none;
}
#send-msg-btn {
display: none;
}
}
@media only screen and (min-width: 321px) {
@ -940,12 +944,16 @@ p.mentioned span.chatmessage {
#upload-file-btn {
display: block;
}
#send-msg-btn {
display: block;
}
}
#upload-file-btn {
position: absolute;
bottom: 5px;
right: 38px;
right: 67px;
color: gray;
padding: 1px;
transition: .3s ease-out;
@ -955,6 +963,19 @@ p.mentioned span.chatmessage {
color: white;
}
#send-msg-btn {
position: absolute;
bottom: 7px;
right: 6px;
width: 30px;
height: 30px;
}
#send-msg-btn > i {
position: relative;
top: -13px;
}
#fileinput {
display: none;
}