datastake-daf 0.6.658 → 0.6.660
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/layouts/index.js
CHANGED
|
@@ -7190,7 +7190,7 @@ function AppLayout({
|
|
|
7190
7190
|
disabled: true
|
|
7191
7191
|
}]
|
|
7192
7192
|
},
|
|
7193
|
-
rootClassName: formatClassname(['dark-menu min-w-300', appName]),
|
|
7193
|
+
rootClassName: formatClassname(['dark-menu min-w-300', appName, theme.customHeaderColor && 'custom']),
|
|
7194
7194
|
trigger: ['click'],
|
|
7195
7195
|
placement: "bottom",
|
|
7196
7196
|
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
@@ -1585,6 +1585,11 @@ ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar-thu
|
|
|
1585
1585
|
stroke: var(--nested-sidenav-text-color, --custom-sidenav-text-color, white) !important;
|
|
1586
1586
|
}
|
|
1587
1587
|
|
|
1588
|
+
.components-layout:not(.nested)
|
|
1589
|
+
.mod-name.not-collapsed h1{
|
|
1590
|
+
color: var(--custom-sidenav-text-color, white) !important;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1588
1593
|
.components-layout:not(.nested)
|
|
1589
1594
|
.d-flex.left-sidebar.right-sidebar
|
|
1590
1595
|
.desktop span svg {
|
package/package.json
CHANGED
|
@@ -342,7 +342,7 @@ function AppLayout({
|
|
|
342
342
|
disabled: true,
|
|
343
343
|
}]
|
|
344
344
|
}}
|
|
345
|
-
rootClassName={formatClassname(['dark-menu min-w-300', appName])}
|
|
345
|
+
rootClassName={formatClassname(['dark-menu min-w-300', appName, theme.customHeaderColor && 'custom'])}
|
|
346
346
|
trigger={['click']}
|
|
347
347
|
placement="bottom"
|
|
348
348
|
>
|
|
@@ -1585,6 +1585,11 @@ ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar-thu
|
|
|
1585
1585
|
stroke: var(--nested-sidenav-text-color, --custom-sidenav-text-color, white) !important;
|
|
1586
1586
|
}
|
|
1587
1587
|
|
|
1588
|
+
.components-layout:not(.nested)
|
|
1589
|
+
.mod-name.not-collapsed h1{
|
|
1590
|
+
color: var(--custom-sidenav-text-color, white) !important;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1588
1593
|
.components-layout:not(.nested)
|
|
1589
1594
|
.d-flex.left-sidebar.right-sidebar
|
|
1590
1595
|
.desktop span svg {
|