Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const getBubbleStyles = (theme) => {
display: flex;
position: absolute;
bottom: calc(100% - 20px);
left: calc(100% - 20px);
left: calc(100% - 10px);
z-index: 1101;
}
`,
Expand Down Expand Up @@ -171,7 +171,7 @@ export const getBubbleStylesMe = (theme) => {
toolboxContainerMe: css`
.ec-message-body:hover & {
left: auto;
right: calc(100% - 20px);
right: calc(100% - 10px);
}
`,

Expand Down
9 changes: 9 additions & 0 deletions packages/react/src/views/Message/Message.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,15 @@ export const getMessageToolboxStyles = (theme) => {
gap: 0.25rem;
padding: 0.25rem;
border-radius: ${theme.radius};
&::before {
content: "";
position: absolute;
bottom: 100%;
left: 0;
right: 0;
height: 5px;
background: transparent;
}
`,

emojiPickerStyles: css`
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/views/Message/MessageToolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export const MessageToolbox = ({
<Menu
size="small"
options={menuOptions}
tooltip={{ isToolTip: true, position: 'top', text: 'More' }}
tooltip={{ isToolTip: true, position: 'bottom', text: 'More' }}
useWrapper={false}
style={{ top: 'auto', bottom: `calc(100% + 2px)` }}
/>
Expand Down