We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70397fa commit 4914fa6Copy full SHA for 4914fa6
2 files changed
packages/pluggableWidgets/rich-text-web/src/ui/RichText.scss
@@ -13,6 +13,13 @@ $rte-brand-primary: #264ae5;
13
.ql-container {
14
border: unset;
15
overflow: hidden;
16
+
17
+ .ql-tooltip {
18
+ position: fixed;
19
+ width: max-content;
20
+ left: 0;
21
+ z-index: 1;
22
+ }
23
}
24
25
&.fullscreen {
packages/pluggableWidgets/rich-text-web/src/utils/themes/mxTooltip.ts
@@ -86,7 +86,7 @@ export default class MxTooltip extends BaseTooltip {
86
87
setPosition(domNode: HTMLElement): void {
88
computePosition(domNode, this.root, {
89
- placement: "bottom",
+ placement: "bottom-end",
90
middleware: [flip(), shift({ padding: 5 })]
91
}).then(({ x, y }) => {
92
Object.assign(this.root.style, {
0 commit comments