We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2283619 commit 7eaaefcCopy full SHA for 7eaaefc
1 file changed
packages/pluggableWidgets/rich-text-web/src/components/toolbars/Toolbar.scss
@@ -3,9 +3,25 @@ $rte-gray-ligher: #f8f8f8 !default;
3
$rte-brand-primary: #264ae5 !default;
4
$rte-shadow-color: #00000014 !default;
5
6
-.widget-rich-text.toolbar-bottom {
7
- .tiptap-wrapper {
8
- flex-direction: column-reverse;
+.widget-rich-text {
+ &.toolbar-bottom {
+ .tiptap-wrapper {
9
+ flex-direction: column-reverse;
10
+ }
11
12
+
13
+ &.toolbar-auto {
14
+ &.form-control {
15
+ /* position sticky only works for overflow visible. this is to override form-control style */
16
+ overflow: visible;
17
18
19
+ .tiptap-toolbar {
20
+ position: sticky;
21
+ z-index: 50;
22
+ background-color: white;
23
+ top: 0;
24
25
}
26
27
0 commit comments