@neo4j-ndl/base 3.0.10 → 3.0.12
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 +13 -5
- 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
|
@@ -1791,9 +1791,7 @@ a.ndl-btn {
|
|
|
1791
1791
|
line-height:1.25rem;
|
|
1792
1792
|
}
|
|
1793
1793
|
.ndl-banner.ndl-full-width .ndl-banner-actions a {
|
|
1794
|
-
cursor:pointer;
|
|
1795
1794
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
1796
|
-
text-decoration-line:underline;
|
|
1797
1795
|
}
|
|
1798
1796
|
.ndl-banner .ndl-banner-title {
|
|
1799
1797
|
display:flex;
|
|
@@ -1812,6 +1810,14 @@ a.ndl-btn {
|
|
|
1812
1810
|
.ndl-banner .ndl-banner-icon.ndl-close-icon {
|
|
1813
1811
|
cursor:pointer;
|
|
1814
1812
|
}
|
|
1813
|
+
.ndl-banner .ndl-banner-actions a {
|
|
1814
|
+
cursor:pointer;
|
|
1815
|
+
text-decoration-line:underline;
|
|
1816
|
+
}
|
|
1817
|
+
.ndl-banner .ndl-banner-actions button {
|
|
1818
|
+
cursor:pointer;
|
|
1819
|
+
text-decoration-line:underline;
|
|
1820
|
+
}
|
|
1815
1821
|
.ndl-form-item.ndl-type-checkbox{
|
|
1816
1822
|
line-height:0;
|
|
1817
1823
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
@@ -6525,6 +6531,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6525
6531
|
.ndl-text-input .ndl-input-wrapper input {
|
|
6526
6532
|
width:100%;
|
|
6527
6533
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
6534
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
6528
6535
|
outline:2px solid transparent;
|
|
6529
6536
|
outline-offset:2px;
|
|
6530
6537
|
}
|
|
@@ -6773,7 +6780,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6773
6780
|
width:100%;
|
|
6774
6781
|
height:100%;
|
|
6775
6782
|
opacity:1;
|
|
6776
|
-
overflow:
|
|
6783
|
+
overflow:hidden;
|
|
6777
6784
|
position:relative;
|
|
6778
6785
|
z-index:5;
|
|
6779
6786
|
max-height:100%;
|
|
@@ -7002,8 +7009,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7002
7009
|
.ndl-charts-chart-dot .ndl-chart-charts-dot-circle {
|
|
7003
7010
|
stroke:rgb(var(--theme-palette-neutral-bg-weak));
|
|
7004
7011
|
}
|
|
7005
|
-
.
|
|
7006
|
-
|
|
7012
|
+
.ndl-charts-chart-zoom{
|
|
7013
|
+
fill:#e2e3e5;
|
|
7014
|
+
fill-opacity:0.5;
|
|
7007
7015
|
}
|
|
7008
7016
|
.n-sr-only {
|
|
7009
7017
|
position:absolute;
|
package/lib/tokens/js/tokens.js
CHANGED