@neo4j-ndl/base 3.0.11 → 3.0.13
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +20 -3
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -3317,6 +3317,12 @@ a.ndl-btn {
|
|
|
3317
3317
|
border-color:rgb(var(--theme-palette-neutral-bg-strong));
|
|
3318
3318
|
border-bottom-color:rgb(var(--theme-palette-primary-bg-status));
|
|
3319
3319
|
}
|
|
3320
|
+
:root{
|
|
3321
|
+
--data-grid-hover-color:rgb(241, 241, 242);
|
|
3322
|
+
}
|
|
3323
|
+
.ndl-theme-dark{
|
|
3324
|
+
--data-grid-hover-color:rgba(45, 47, 49);
|
|
3325
|
+
}
|
|
3320
3326
|
.ndl-data-grid-focusable-cells .ndl-focusable-cell {
|
|
3321
3327
|
outline:2px solid transparent;
|
|
3322
3328
|
outline-offset:2px;
|
|
@@ -3455,7 +3461,7 @@ a.ndl-btn {
|
|
|
3455
3461
|
background-color:var(--cell-background);
|
|
3456
3462
|
}
|
|
3457
3463
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr:hover{
|
|
3458
|
-
--cell-background:
|
|
3464
|
+
--cell-background:var(--data-grid-hover-color);
|
|
3459
3465
|
}
|
|
3460
3466
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-row-action{
|
|
3461
3467
|
background-color:var(--cell-background);
|
|
@@ -6531,6 +6537,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6531
6537
|
.ndl-text-input .ndl-input-wrapper input {
|
|
6532
6538
|
width:100%;
|
|
6533
6539
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
6540
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
6534
6541
|
outline:2px solid transparent;
|
|
6535
6542
|
outline-offset:2px;
|
|
6536
6543
|
}
|
|
@@ -6782,7 +6789,6 @@ button.ndl-avatar:focus-visible {
|
|
|
6782
6789
|
overflow:hidden;
|
|
6783
6790
|
position:relative;
|
|
6784
6791
|
z-index:5;
|
|
6785
|
-
max-height:100%;
|
|
6786
6792
|
}
|
|
6787
6793
|
.ndl-chart-legend {
|
|
6788
6794
|
display:flex;
|
|
@@ -6874,7 +6880,6 @@ button.ndl-avatar:focus-visible {
|
|
|
6874
6880
|
.ndl-charts-chart-axis-x svg {
|
|
6875
6881
|
overflow:visible;
|
|
6876
6882
|
width:100%;
|
|
6877
|
-
height:31px;
|
|
6878
6883
|
}
|
|
6879
6884
|
.ndl-charts-chart-axis-y {
|
|
6880
6885
|
display:flex;
|
|
@@ -6943,6 +6948,18 @@ button.ndl-avatar:focus-visible {
|
|
|
6943
6948
|
width:100%;
|
|
6944
6949
|
background-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
6945
6950
|
}
|
|
6951
|
+
.ndl-charts-chart-cartesian-grid .ndl-charts-chart-cartesian-grid-zebra {
|
|
6952
|
+
position:absolute;
|
|
6953
|
+
background-color:rgb(var(--theme-palette-discovery-bg-status));
|
|
6954
|
+
opacity:0.04;
|
|
6955
|
+
}
|
|
6956
|
+
.ndl-charts-chart-cartesian-grid .ndl-charts-chart-cartesian-grid-filled {
|
|
6957
|
+
position:absolute;
|
|
6958
|
+
height:100%;
|
|
6959
|
+
width:100%;
|
|
6960
|
+
background-color:rgb(var(--theme-palette-discovery-bg-status));
|
|
6961
|
+
opacity:0.04;
|
|
6962
|
+
}
|
|
6946
6963
|
.ndl-charts-chart-tooltip {
|
|
6947
6964
|
display:flex;
|
|
6948
6965
|
min-width:176px;
|
package/lib/tokens/js/tokens.js
CHANGED