@neo4j-ndl/base 3.7.13 → 3.7.14
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 +31 -10
- 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
|
@@ -7443,8 +7443,29 @@ button.ndl-avatar:focus-visible {
|
|
|
7443
7443
|
--tw-text-opacity:1;
|
|
7444
7444
|
color:rgb(255 255 255 / var(--tw-text-opacity));
|
|
7445
7445
|
}
|
|
7446
|
-
.ndl-chart-legend .ndl-chart-legend-item
|
|
7447
|
-
|
|
7446
|
+
.ndl-chart-legend .ndl-chart-legend-item:focus-visible {
|
|
7447
|
+
outline:2px solid transparent;
|
|
7448
|
+
outline-offset:2px;
|
|
7449
|
+
}
|
|
7450
|
+
.ndl-chart-legend .ndl-chart-legend-item:focus-visible .ndl-chart-legend-item-square {
|
|
7451
|
+
outline-style:solid;
|
|
7452
|
+
outline-width:2px;
|
|
7453
|
+
outline-offset:1px;
|
|
7454
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
7455
|
+
}
|
|
7456
|
+
.ndl-chart-legend .ndl-chart-legend-item:hover .ndl-chart-legend-item-square {
|
|
7457
|
+
outline-style:solid;
|
|
7458
|
+
outline-width:2px;
|
|
7459
|
+
outline-offset:0px;
|
|
7460
|
+
outline-color:color-mix(
|
|
7461
|
+
in srgb,
|
|
7462
|
+
var(--ndl-chart-legend-item-color) 25%,
|
|
7463
|
+
transparent
|
|
7464
|
+
);
|
|
7465
|
+
}
|
|
7466
|
+
.ndl-chart-legend .ndl-chart-legend-item.ndl-chart-legend-item-deselected .ndl-chart-legend-item-square {
|
|
7467
|
+
border-width:1px;
|
|
7468
|
+
border-color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
7448
7469
|
}
|
|
7449
7470
|
.ndl-chart-legend.ndl-chart-legend-wrapping {
|
|
7450
7471
|
flex-wrap:wrap;
|
|
@@ -7453,24 +7474,24 @@ button.ndl-avatar:focus-visible {
|
|
|
7453
7474
|
overflow:hidden;
|
|
7454
7475
|
}
|
|
7455
7476
|
.ndl-chart-legend.ndl-chart-legend-truncation .ndl-chart-legend-item {
|
|
7477
|
+
min-width:0px;
|
|
7478
|
+
max-width:-moz-fit-content;
|
|
7479
|
+
max-width:fit-content;
|
|
7456
7480
|
flex-grow:1;
|
|
7457
7481
|
flex-basis:0px;
|
|
7458
|
-
overflow:hidden;
|
|
7459
7482
|
text-overflow:ellipsis;
|
|
7460
7483
|
white-space:nowrap;
|
|
7461
|
-
max-width:-moz-fit-content;
|
|
7462
|
-
max-width:fit-content;
|
|
7463
7484
|
}
|
|
7464
7485
|
.ndl-chart-legend.ndl-chart-legend-truncation .ndl-chart-legend-item-text {
|
|
7486
|
+
max-width:-moz-fit-content;
|
|
7487
|
+
max-width:fit-content;
|
|
7465
7488
|
overflow:hidden;
|
|
7466
7489
|
text-overflow:ellipsis;
|
|
7467
7490
|
white-space:nowrap;
|
|
7468
|
-
max-width:-moz-fit-content;
|
|
7469
|
-
max-width:fit-content;
|
|
7470
7491
|
}
|
|
7471
|
-
.ndl-chart-legend.ndl-chart-legend-calculating{
|
|
7472
|
-
|
|
7473
|
-
|
|
7492
|
+
.ndl-chart-legend.ndl-chart-legend-calculating {
|
|
7493
|
+
opacity:0;
|
|
7494
|
+
}
|
|
7474
7495
|
.ndl-charts-chart-tooltip {
|
|
7475
7496
|
display:flex;
|
|
7476
7497
|
min-width:176px;
|
package/lib/tokens/js/tokens.js
CHANGED