Skip to content
Snippets Groups Projects
Commit 9e2a0e73 authored by ubermanu's avatar ubermanu
Browse files

move inline actions on top of the message

parent f7de8c33
No related branches found
No related tags found
2 merge requests!122Custom Emoji Drawer & Inline Message Actions,!119Inline message actions
......@@ -872,7 +872,18 @@
width: 100% !important;
}
// Message actions (inline)
//
// Message Actions (inline)
// ---------------------------------
.chat-msg {
position: relative;
}
// Reset these positions
.chat-msg__content, .chat-msg__body, converse-message-actions {
position: initial;
}
.chat-msg:not(:hover) .chat-msg__actions--inline {
display: none;
......@@ -880,5 +891,12 @@
.chat-msg__actions--inline {
display: flex;
position: absolute;
top: 0;
right: 0;
transform: translateY(-50%);
background: #f6f6f6;
border: 2px solid white;
border-radius: 3px;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment