@neo4j-ndl/base 3.0.15 → 3.0.17
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 +122 -172
- 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
|
@@ -1665,10 +1665,20 @@ a.ndl-btn {
|
|
|
1665
1665
|
.ndl-banner.ndl-inline .ndl-banner-content, .ndl-banner.ndl-global .ndl-banner-content {
|
|
1666
1666
|
display:flex;
|
|
1667
1667
|
flex:1 1 0%;
|
|
1668
|
-
flex-direction:
|
|
1669
|
-
|
|
1668
|
+
flex-direction:row;
|
|
1669
|
+
flex-wrap:wrap;
|
|
1670
|
+
justify-content:space-between;
|
|
1671
|
+
gap:16px;
|
|
1670
1672
|
overflow:auto;
|
|
1671
1673
|
}
|
|
1674
|
+
.ndl-banner.ndl-inline.ndl-with-title .ndl-banner-content, .ndl-banner.ndl-global.ndl-with-title .ndl-banner-content {
|
|
1675
|
+
flex-direction:column;
|
|
1676
|
+
}
|
|
1677
|
+
.ndl-banner.ndl-inline .ndl-banner-title-description, .ndl-banner.ndl-global .ndl-banner-title-description {
|
|
1678
|
+
display:flex;
|
|
1679
|
+
flex-direction:column;
|
|
1680
|
+
gap:4px;
|
|
1681
|
+
}
|
|
1672
1682
|
.ndl-banner.ndl-inline.ndl-warning, .ndl-banner.ndl-global.ndl-warning {
|
|
1673
1683
|
background-color:rgb(var(--theme-palette-warning-bg-weak));
|
|
1674
1684
|
border-style:solid;
|
|
@@ -1709,19 +1719,12 @@ a.ndl-btn {
|
|
|
1709
1719
|
.ndl-banner.ndl-inline.ndl-danger .ndl-banner-actions a, .ndl-banner.ndl-global.ndl-danger .ndl-banner-actions a {
|
|
1710
1720
|
cursor:pointer;
|
|
1711
1721
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
1712
|
-
text-decoration-line:underline;
|
|
1713
1722
|
font-family:var(--font-font-family-body-label), sans-serif;
|
|
1714
1723
|
font-size:var(--font-size-label);
|
|
1715
1724
|
font-weight:var(--font-weight-bold);
|
|
1716
1725
|
letter-spacing:0;
|
|
1717
1726
|
line-height:1.25rem;
|
|
1718
1727
|
}
|
|
1719
|
-
.ndl-banner.ndl-inline .ndl-banner-actions, .ndl-banner.ndl-global .ndl-banner-actions {
|
|
1720
|
-
margin-top:16px;
|
|
1721
|
-
display:flex;
|
|
1722
|
-
-moz-column-gap:16px;
|
|
1723
|
-
column-gap:16px;
|
|
1724
|
-
}
|
|
1725
1728
|
.ndl-banner.ndl-inline .ndl-banner-icon.ndl-close-icon, .ndl-banner.ndl-global .ndl-banner-icon.ndl-close-icon {
|
|
1726
1729
|
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
1727
1730
|
}
|
|
@@ -1772,6 +1775,14 @@ a.ndl-btn {
|
|
|
1772
1775
|
margin-left:auto;
|
|
1773
1776
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
1774
1777
|
}
|
|
1778
|
+
.ndl-banner.ndl-full-width .ndl-banner-icon.ndl-close-icon:hover {
|
|
1779
|
+
background-color:rgb(149 154 161 / var(--tw-bg-opacity));
|
|
1780
|
+
--tw-bg-opacity:0.1;
|
|
1781
|
+
}
|
|
1782
|
+
.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-icon.ndl-close-icon:hover {
|
|
1783
|
+
background-color:rgb(111 117 126 / var(--tw-bg-opacity));
|
|
1784
|
+
--tw-bg-opacity:0.1;
|
|
1785
|
+
}
|
|
1775
1786
|
.ndl-banner.ndl-full-width .ndl-banner-icon.ndl-close-icon::before {
|
|
1776
1787
|
position:absolute;
|
|
1777
1788
|
left:-12px;
|
|
@@ -1790,9 +1801,27 @@ a.ndl-btn {
|
|
|
1790
1801
|
letter-spacing:0.016rem;
|
|
1791
1802
|
line-height:1.25rem;
|
|
1792
1803
|
}
|
|
1793
|
-
.ndl-banner.ndl-full-width .ndl-banner-actions
|
|
1804
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-btn {
|
|
1805
|
+
border-color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
1806
|
+
background-color:transparent;
|
|
1794
1807
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
1795
1808
|
}
|
|
1809
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-btn:not(:disabled):hover {
|
|
1810
|
+
background-color:rgb(149 154 161 / var(--tw-bg-opacity));
|
|
1811
|
+
--tw-bg-opacity:0.1;
|
|
1812
|
+
}
|
|
1813
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-btn:not(:disabled):active {
|
|
1814
|
+
background-color:rgb(149 154 161 / var(--tw-bg-opacity));
|
|
1815
|
+
--tw-bg-opacity:0.2;
|
|
1816
|
+
}
|
|
1817
|
+
.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-btn:not(:disabled):hover {
|
|
1818
|
+
background-color:rgb(111 117 126 / var(--tw-bg-opacity));
|
|
1819
|
+
--tw-bg-opacity:0.1;
|
|
1820
|
+
}
|
|
1821
|
+
.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-btn:not(:disabled):active {
|
|
1822
|
+
background-color:rgb(111 117 126 / var(--tw-bg-opacity));
|
|
1823
|
+
--tw-bg-opacity:0.2;
|
|
1824
|
+
}
|
|
1796
1825
|
.ndl-banner .ndl-banner-title {
|
|
1797
1826
|
display:flex;
|
|
1798
1827
|
justify-content:space-between;
|
|
@@ -1810,13 +1839,32 @@ a.ndl-btn {
|
|
|
1810
1839
|
.ndl-banner .ndl-banner-icon.ndl-close-icon {
|
|
1811
1840
|
cursor:pointer;
|
|
1812
1841
|
}
|
|
1813
|
-
.ndl-banner .ndl-banner-actions
|
|
1814
|
-
|
|
1815
|
-
|
|
1842
|
+
.ndl-banner .ndl-banner-actions {
|
|
1843
|
+
display:flex;
|
|
1844
|
+
flex-wrap:wrap;
|
|
1845
|
+
-moz-column-gap:12px;
|
|
1846
|
+
column-gap:12px;
|
|
1847
|
+
row-gap:12px;
|
|
1816
1848
|
}
|
|
1817
|
-
.ndl-banner .ndl-banner-actions
|
|
1849
|
+
.ndl-banner .ndl-banner-actions .ndl-btn {
|
|
1818
1850
|
cursor:pointer;
|
|
1819
|
-
text-
|
|
1851
|
+
border-color:rgb(var(--theme-palette-neutral-text-default));
|
|
1852
|
+
background-color:transparent;
|
|
1853
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
1854
|
+
}
|
|
1855
|
+
.ndl-banner .ndl-banner-actions .ndl-btn:disabled {
|
|
1856
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
1857
|
+
background-color:transparent;
|
|
1858
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
1859
|
+
}
|
|
1860
|
+
.ndl-banner .ndl-banner-actions .ndl-btn:disabled:hover {
|
|
1861
|
+
cursor:not-allowed;
|
|
1862
|
+
}
|
|
1863
|
+
.ndl-banner .ndl-banner-actions .ndl-btn:not(:disabled):hover {
|
|
1864
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
1865
|
+
}
|
|
1866
|
+
.ndl-banner .ndl-banner-actions .ndl-btn:not(:disabled):active {
|
|
1867
|
+
background-color:rgb(var(--theme-palette-neutral-pressed));
|
|
1820
1868
|
}
|
|
1821
1869
|
.ndl-form-item.ndl-type-checkbox{
|
|
1822
1870
|
line-height:0;
|
|
@@ -3061,6 +3109,7 @@ a.ndl-btn {
|
|
|
3061
3109
|
position:absolute;
|
|
3062
3110
|
top:0px;
|
|
3063
3111
|
bottom:0px;
|
|
3112
|
+
z-index:10;
|
|
3064
3113
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
3065
3114
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
3066
3115
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
@@ -3403,12 +3452,21 @@ a.ndl-btn {
|
|
|
3403
3452
|
.ndl-data-grid-root.ndl-data-grid-border-all-sides
|
|
3404
3453
|
.ndl-data-grid-td:not(.ndl-focusable-cell:focus):not(
|
|
3405
3454
|
.ndl-data-grid-is-resizing
|
|
3406
|
-
),
|
|
3407
|
-
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-th:not(.ndl-focusable-cell:focus)
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
}
|
|
3455
|
+
):last-child,
|
|
3456
|
+
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-th:not(.ndl-focusable-cell:focus):last-child{
|
|
3457
|
+
border-left-width:1px;
|
|
3458
|
+
border-style:solid;
|
|
3459
|
+
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3460
|
+
}
|
|
3461
|
+
.ndl-data-grid-root.ndl-data-grid-border-all-sides
|
|
3462
|
+
.ndl-data-grid-td:not(.ndl-focusable-cell:focus):not(
|
|
3463
|
+
.ndl-data-grid-is-resizing
|
|
3464
|
+
):not(:nth-last-child(2)),
|
|
3465
|
+
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-th:not(.ndl-focusable-cell:focus):not(:nth-last-child(2)){
|
|
3466
|
+
border-right-width:1px;
|
|
3467
|
+
border-style:solid;
|
|
3468
|
+
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3469
|
+
}
|
|
3412
3470
|
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-tr > .ndl-data-grid-td {
|
|
3413
3471
|
border-bottom-width:1px;
|
|
3414
3472
|
border-style:solid;
|
|
@@ -4871,6 +4929,47 @@ a.ndl-btn {
|
|
|
4871
4929
|
a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .cm-button {
|
|
4872
4930
|
text-decoration-line:none;
|
|
4873
4931
|
}
|
|
4932
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button,.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button {
|
|
4933
|
+
border-color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
4934
|
+
background-color:transparent;
|
|
4935
|
+
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
4936
|
+
}
|
|
4937
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):hover,.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):hover {
|
|
4938
|
+
background-color:rgb(149 154 161 / var(--tw-bg-opacity));
|
|
4939
|
+
--tw-bg-opacity:0.1;
|
|
4940
|
+
}
|
|
4941
|
+
.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):active,.ndl-banner.ndl-full-width .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):active {
|
|
4942
|
+
background-color:rgb(149 154 161 / var(--tw-bg-opacity));
|
|
4943
|
+
--tw-bg-opacity:0.2;
|
|
4944
|
+
}
|
|
4945
|
+
.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):hover,.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):hover {
|
|
4946
|
+
background-color:rgb(111 117 126 / var(--tw-bg-opacity));
|
|
4947
|
+
--tw-bg-opacity:0.1;
|
|
4948
|
+
}
|
|
4949
|
+
.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):active,.ndl-theme-dark .ndl-banner.ndl-full-width .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):active {
|
|
4950
|
+
background-color:rgb(111 117 126 / var(--tw-bg-opacity));
|
|
4951
|
+
--tw-bg-opacity:0.2;
|
|
4952
|
+
}
|
|
4953
|
+
.ndl-banner .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button,.ndl-banner .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button {
|
|
4954
|
+
cursor:pointer;
|
|
4955
|
+
border-color:rgb(var(--theme-palette-neutral-text-default));
|
|
4956
|
+
background-color:transparent;
|
|
4957
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
4958
|
+
}
|
|
4959
|
+
.ndl-banner .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:disabled,.ndl-banner .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:disabled {
|
|
4960
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4961
|
+
background-color:transparent;
|
|
4962
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4963
|
+
}
|
|
4964
|
+
.ndl-banner .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:disabled:hover,.ndl-banner .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:disabled:hover {
|
|
4965
|
+
cursor:not-allowed;
|
|
4966
|
+
}
|
|
4967
|
+
.ndl-banner .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):hover,.ndl-banner .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):hover {
|
|
4968
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4969
|
+
}
|
|
4970
|
+
.ndl-banner .ndl-banner-actions .ndl-cypher-editor .cm-editor .cm-button:not(:disabled):active,.ndl-banner .ndl-banner-actions .ndl-codemirror-editor .cm-editor .cm-button:not(:disabled):active {
|
|
4971
|
+
background-color:rgb(var(--theme-palette-neutral-pressed));
|
|
4972
|
+
}
|
|
4874
4973
|
.ndl-cypher-editor .cm-completionLabel, .ndl-codemirror-editor .cm-completionLabel{
|
|
4875
4974
|
font-family:'Fira Code';
|
|
4876
4975
|
font-weight:700;
|
|
@@ -6763,34 +6862,9 @@ button.ndl-avatar:focus-visible {
|
|
|
6763
6862
|
.ndl-tooltip-content.ndl-tooltip-content-rich .ndl-tooltip-actions .ndl-tooltip-action-close {
|
|
6764
6863
|
margin-left:auto;
|
|
6765
6864
|
}
|
|
6766
|
-
.ndl-charts{
|
|
6767
|
-
display:flex;
|
|
6768
|
-
flex-direction:column;
|
|
6769
|
-
align-items:stretch;
|
|
6770
|
-
width:100%;
|
|
6771
|
-
height:100%;
|
|
6772
|
-
}
|
|
6773
|
-
.ndl-charts-chart{
|
|
6774
|
-
overflow:hidden;
|
|
6775
|
-
background:white;
|
|
6776
|
-
width:100%;
|
|
6777
|
-
height:100%;
|
|
6778
|
-
display:grid;
|
|
6779
|
-
grid-template-columns:auto 1fr auto;
|
|
6780
|
-
grid-template-rows:auto 1fr auto;
|
|
6781
|
-
grid-template-areas:'. top-x-axis .' 'left-y-axis content right-y-axis' '. bottom-x-axis .';
|
|
6782
|
-
overflow:visible;
|
|
6783
|
-
}
|
|
6784
|
-
.ndl-charts-chart-content{
|
|
6785
|
-
grid-area:content;
|
|
6786
|
-
width:100%;
|
|
6787
|
-
height:100%;
|
|
6788
|
-
opacity:1;
|
|
6789
|
-
overflow:hidden;
|
|
6790
|
-
position:relative;
|
|
6791
|
-
z-index:5;
|
|
6792
|
-
}
|
|
6793
6865
|
.ndl-chart-legend {
|
|
6866
|
+
position:relative;
|
|
6867
|
+
z-index:10;
|
|
6794
6868
|
display:flex;
|
|
6795
6869
|
width:100%;
|
|
6796
6870
|
flex-direction:row;
|
|
@@ -6843,123 +6917,6 @@ button.ndl-avatar:focus-visible {
|
|
|
6843
6917
|
.ndl-chart-legend.ndl-chart-legend-calculating{
|
|
6844
6918
|
opacity:0;
|
|
6845
6919
|
}
|
|
6846
|
-
.ndl-charts-chart-axis{
|
|
6847
|
-
width:100%;
|
|
6848
|
-
height:100%;
|
|
6849
|
-
position:relative;
|
|
6850
|
-
z-index:1;
|
|
6851
|
-
}
|
|
6852
|
-
.ndl-charts-chart-axis .domain {
|
|
6853
|
-
stroke:rgb(var(--theme-palette-neutral-border-strong));
|
|
6854
|
-
stroke-width:2px;
|
|
6855
|
-
}
|
|
6856
|
-
.ndl-charts-chart-axis .tick line {
|
|
6857
|
-
stroke:rgb(var(--theme-palette-neutral-border-strong));
|
|
6858
|
-
}
|
|
6859
|
-
.ndl-charts-chart-axis .tick text,
|
|
6860
|
-
.ndl-charts-chart-axis .tick span {
|
|
6861
|
-
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
6862
|
-
font-family:var(--font-font-family-body-small), sans-serif;
|
|
6863
|
-
font-size:var(--font-size-body-small);
|
|
6864
|
-
font-weight:var(--font-weight-normal);
|
|
6865
|
-
letter-spacing:0.016rem;
|
|
6866
|
-
line-height:1.25rem;
|
|
6867
|
-
}
|
|
6868
|
-
.ndl-charts-chart-axis .tick svg {
|
|
6869
|
-
overflow:visible;
|
|
6870
|
-
}
|
|
6871
|
-
.ndl-charts-chart-axis .ndl-charts-chart-axis-title {
|
|
6872
|
-
margin-left:auto;
|
|
6873
|
-
margin-right:auto;
|
|
6874
|
-
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
6875
|
-
}
|
|
6876
|
-
.ndl-charts-chart-axis-x {
|
|
6877
|
-
display:flex;
|
|
6878
|
-
flex-direction:column;
|
|
6879
|
-
}
|
|
6880
|
-
.ndl-charts-chart-axis-x svg {
|
|
6881
|
-
overflow:visible;
|
|
6882
|
-
width:100%;
|
|
6883
|
-
}
|
|
6884
|
-
.ndl-charts-chart-axis-y {
|
|
6885
|
-
display:flex;
|
|
6886
|
-
flex-direction:row;
|
|
6887
|
-
overflow:visible;
|
|
6888
|
-
}
|
|
6889
|
-
.ndl-charts-chart-axis-y svg{
|
|
6890
|
-
height:100%;
|
|
6891
|
-
}
|
|
6892
|
-
.ndl-charts-chart-axis-y text {
|
|
6893
|
-
fill:rgb(var(--theme-palette-neutral-text-weaker));
|
|
6894
|
-
font-family:var(--font-font-family-body-small), sans-serif;
|
|
6895
|
-
font-size:var(--font-size-body-small);
|
|
6896
|
-
font-weight:var(--font-weight-normal);
|
|
6897
|
-
letter-spacing:0.016rem;
|
|
6898
|
-
line-height:1.25rem;
|
|
6899
|
-
}
|
|
6900
|
-
.ndl-charts-chart-axis-top{
|
|
6901
|
-
grid-area:top-x-axis;
|
|
6902
|
-
}
|
|
6903
|
-
.ndl-charts-chart-axis-top .ndl-charts-chart-axis-title {
|
|
6904
|
-
margin-bottom:12px;
|
|
6905
|
-
}
|
|
6906
|
-
.ndl-charts-chart-axis-right {
|
|
6907
|
-
padding-left:8px;
|
|
6908
|
-
grid-area:right-y-axis;
|
|
6909
|
-
}
|
|
6910
|
-
.ndl-charts-chart-axis-right .ndl-charts-chart-axis-title{
|
|
6911
|
-
height:-moz-fit-content;
|
|
6912
|
-
height:fit-content;
|
|
6913
|
-
width:-moz-fit-content;
|
|
6914
|
-
width:fit-content;
|
|
6915
|
-
margin:auto;
|
|
6916
|
-
writing-mode:vertical-lr;
|
|
6917
|
-
margin-left:8px;
|
|
6918
|
-
}
|
|
6919
|
-
.ndl-charts-chart-axis-bottom{
|
|
6920
|
-
grid-area:bottom-x-axis;
|
|
6921
|
-
}
|
|
6922
|
-
.ndl-charts-chart-axis-bottom .ndl-charts-chart-axis-title {
|
|
6923
|
-
margin-top:12px;
|
|
6924
|
-
}
|
|
6925
|
-
.ndl-charts-chart-axis-left {
|
|
6926
|
-
padding-right:8px;
|
|
6927
|
-
grid-area:left-y-axis;
|
|
6928
|
-
}
|
|
6929
|
-
.ndl-charts-chart-axis-left .ndl-charts-chart-axis-title{
|
|
6930
|
-
height:-moz-fit-content;
|
|
6931
|
-
height:fit-content;
|
|
6932
|
-
width:-moz-fit-content;
|
|
6933
|
-
width:fit-content;
|
|
6934
|
-
margin:auto;
|
|
6935
|
-
writing-mode:vertical-lr;
|
|
6936
|
-
transform:rotate(180deg);
|
|
6937
|
-
|
|
6938
|
-
margin-right:8px;
|
|
6939
|
-
}
|
|
6940
|
-
.ndl-charts-chart-cartesian-grid{
|
|
6941
|
-
grid-area:content;
|
|
6942
|
-
width:100%;
|
|
6943
|
-
height:100%;
|
|
6944
|
-
position:relative;
|
|
6945
|
-
}
|
|
6946
|
-
.ndl-charts-chart-cartesian-grid .ndl-charts-chart-cartesian-grid-line {
|
|
6947
|
-
height:1px;
|
|
6948
|
-
width:100%;
|
|
6949
|
-
background-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
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
|
-
}
|
|
6963
6920
|
.ndl-charts-chart-tooltip {
|
|
6964
6921
|
display:flex;
|
|
6965
6922
|
min-width:176px;
|
|
@@ -7022,13 +6979,6 @@ button.ndl-avatar:focus-visible {
|
|
|
7022
6979
|
margin-left:auto;
|
|
7023
6980
|
padding-left:8px;
|
|
7024
6981
|
}
|
|
7025
|
-
.ndl-charts-chart-dot .ndl-chart-charts-dot-circle {
|
|
7026
|
-
stroke:rgb(var(--theme-palette-neutral-bg-weak));
|
|
7027
|
-
}
|
|
7028
|
-
.ndl-charts-chart-zoom{
|
|
7029
|
-
fill:#e2e3e5;
|
|
7030
|
-
fill-opacity:0.5;
|
|
7031
|
-
}
|
|
7032
6982
|
.n-sr-only {
|
|
7033
6983
|
position:absolute;
|
|
7034
6984
|
width:1px;
|
package/lib/tokens/js/tokens.js
CHANGED