@jotx-labs/editor 2.4.166 → 2.4.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
.jotx-link-dialog-backdrop {
|
|
2
2
|
position: fixed;
|
|
3
3
|
inset: 0;
|
|
4
|
-
z-index:
|
|
4
|
+
z-index: 10000;
|
|
5
|
+
/* Must be very high to appear above everything including jotxlink preview */
|
|
5
6
|
display: flex;
|
|
6
7
|
align-items: center;
|
|
7
8
|
justify-content: center;
|
|
@@ -10,6 +11,9 @@
|
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
.jotx-link-dialog {
|
|
14
|
+
position: relative;
|
|
15
|
+
z-index: 10001;
|
|
16
|
+
/* Must be higher than backdrop z-index to ensure dialog is on top */
|
|
13
17
|
width: 420px;
|
|
14
18
|
max-width: calc(100vw - 24px);
|
|
15
19
|
border-radius: 6px;
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
.jotx-link-dialog-backdrop {
|
|
2
2
|
position: fixed;
|
|
3
3
|
inset: 0;
|
|
4
|
-
z-index:
|
|
4
|
+
z-index: 10000;
|
|
5
|
+
/* Must be very high to appear above everything including jotxlink preview */
|
|
5
6
|
display: flex;
|
|
6
7
|
align-items: center;
|
|
7
8
|
justify-content: center;
|
|
@@ -10,6 +11,9 @@
|
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
.jotx-link-dialog {
|
|
14
|
+
position: relative;
|
|
15
|
+
z-index: 10001;
|
|
16
|
+
/* Must be higher than backdrop z-index to ensure dialog is on top */
|
|
13
17
|
width: 420px;
|
|
14
18
|
max-width: calc(100vw - 24px);
|
|
15
19
|
border-radius: 6px;
|