gantt-lib 0.52.0 → 0.53.1
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.
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +72 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +70 -18
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +11 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1817,17 +1817,22 @@
|
|
|
1817
1817
|
}
|
|
1818
1818
|
.gantt-tl-dep-error {
|
|
1819
1819
|
position: absolute;
|
|
1820
|
-
top: 100
|
|
1820
|
+
top: calc(100% + 6px);
|
|
1821
1821
|
left: 0;
|
|
1822
|
-
right:
|
|
1822
|
+
right: auto;
|
|
1823
|
+
min-width: max-content;
|
|
1824
|
+
max-width: min(320px, calc(100vw - 32px));
|
|
1823
1825
|
background-color: #fef2f2;
|
|
1824
1826
|
border: 1px solid #fca5a5;
|
|
1825
|
-
border-
|
|
1826
|
-
|
|
1827
|
+
border-radius: 8px;
|
|
1828
|
+
box-shadow: 0 10px 24px rgba(127, 29, 29, 0.16);
|
|
1829
|
+
padding: 6px 10px;
|
|
1827
1830
|
font-size: 0.75rem;
|
|
1828
1831
|
color: #dc2626;
|
|
1829
|
-
z-index:
|
|
1830
|
-
white-space:
|
|
1832
|
+
z-index: 30;
|
|
1833
|
+
white-space: normal;
|
|
1834
|
+
line-height: 1.35;
|
|
1835
|
+
pointer-events: none;
|
|
1831
1836
|
}
|
|
1832
1837
|
.gantt-tl-add-btn {
|
|
1833
1838
|
width: 100%;
|