@neo4j-ndl/base 3.3.7 → 3.3.9
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 +39 -26
- 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
|
@@ -2636,7 +2636,7 @@ a.ndl-btn {
|
|
|
2636
2636
|
.ndl-menu .ndl-menu-item:hover:not(.ndl-disabled),
|
|
2637
2637
|
.ndl-menu .ndl-menu-item:focus-visible:not(.ndl-disabled) {
|
|
2638
2638
|
border-radius:8px;
|
|
2639
|
-
background-color:rgb(var(--theme-palette-neutral-
|
|
2639
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
2640
2640
|
}
|
|
2641
2641
|
.ndl-menu .ndl-menu-item:focus-visible:not(.ndl-disabled) {
|
|
2642
2642
|
outline-style:solid;
|
|
@@ -4699,8 +4699,13 @@ a.ndl-btn {
|
|
|
4699
4699
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step .ndl-wizard-circle {
|
|
4700
4700
|
position:relative;
|
|
4701
4701
|
z-index:10;
|
|
4702
|
+
}
|
|
4703
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step .ndl-wizard-circle.ndl-wizard-align-middle {
|
|
4702
4704
|
margin:auto;
|
|
4703
4705
|
}
|
|
4706
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step .ndl-wizard-circle.ndl-wizard-align-top {
|
|
4707
|
+
margin-bottom:auto;
|
|
4708
|
+
}
|
|
4704
4709
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step .ndl-wizard-circle svg {
|
|
4705
4710
|
width:32px;
|
|
4706
4711
|
height:32px;
|
|
@@ -4760,8 +4765,6 @@ a.ndl-btn {
|
|
|
4760
4765
|
}
|
|
4761
4766
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-step-line-left::before {
|
|
4762
4767
|
position:absolute;
|
|
4763
|
-
top:0px;
|
|
4764
|
-
bottom:50%;
|
|
4765
4768
|
left:50%;
|
|
4766
4769
|
display:block;
|
|
4767
4770
|
width:2px;
|
|
@@ -4771,8 +4774,6 @@ a.ndl-btn {
|
|
|
4771
4774
|
}
|
|
4772
4775
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-step-line-right::after {
|
|
4773
4776
|
position:absolute;
|
|
4774
|
-
top:50%;
|
|
4775
|
-
bottom:0px;
|
|
4776
4777
|
left:50%;
|
|
4777
4778
|
display:block;
|
|
4778
4779
|
width:2px;
|
|
@@ -4780,15 +4781,41 @@ a.ndl-btn {
|
|
|
4780
4781
|
content:'';
|
|
4781
4782
|
transform:translateX(-50%);
|
|
4782
4783
|
}
|
|
4783
|
-
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-
|
|
4784
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-middle.ndl-wizard-step-line-left::before{
|
|
4785
|
+
bottom:50%;
|
|
4786
|
+
top:0%;
|
|
4787
|
+
}
|
|
4788
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-middle.ndl-wizard-step-line-right::after{
|
|
4789
|
+
bottom:0%;
|
|
4790
|
+
top:50%;
|
|
4791
|
+
}
|
|
4792
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-middle.ndl-wizard-step-line-left.ndl-wizard-step-active::before{
|
|
4793
|
+
bottom:50%;
|
|
4794
|
+
top:0%;
|
|
4795
|
+
}
|
|
4796
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-middle.ndl-wizard-step-line-right.ndl-wizard-step-active::after{
|
|
4797
|
+
bottom:0%;
|
|
4798
|
+
top:50%;
|
|
4799
|
+
}
|
|
4800
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-top.ndl-wizard-step-line-left::before{
|
|
4801
|
+
bottom:calc(100% - 16px);
|
|
4802
|
+
top:0%;
|
|
4803
|
+
}
|
|
4804
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-top.ndl-wizard-step-line-right::after{
|
|
4805
|
+
bottom:0%;
|
|
4806
|
+
top:16px;
|
|
4807
|
+
}
|
|
4808
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-top.ndl-wizard-step-line-left.ndl-wizard-step-active::before{
|
|
4809
|
+
bottom:calc(100% - 16px);
|
|
4810
|
+
top:0;
|
|
4811
|
+
}
|
|
4812
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-top.ndl-wizard-step-line-right.ndl-wizard-step-active::after{
|
|
4813
|
+
bottom:0;
|
|
4814
|
+
top:16px;
|
|
4815
|
+
}
|
|
4816
|
+
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-align-top.ndl-wizard-step-line-left.ndl-wizard-step-active.ndl-wizard-step-error::before {
|
|
4784
4817
|
bottom:0px;
|
|
4785
4818
|
}
|
|
4786
|
-
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-step-line-left.ndl-wizard-step-active::before{
|
|
4787
|
-
bottom:calc(50% + 14px);
|
|
4788
|
-
}
|
|
4789
|
-
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-step-line-right.ndl-wizard-step-active::after{
|
|
4790
|
-
top:calc(50% + 14px);
|
|
4791
|
-
}
|
|
4792
4819
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step.ndl-vertical.ndl-wizard-step-complete::before {
|
|
4793
4820
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
4794
4821
|
}
|
|
@@ -7924,9 +7951,6 @@ button.ndl-avatar:focus-visible {
|
|
|
7924
7951
|
.n-gap-token-6 {
|
|
7925
7952
|
gap:16px;
|
|
7926
7953
|
}
|
|
7927
|
-
.n-gap-token-7 {
|
|
7928
|
-
gap:24px;
|
|
7929
|
-
}
|
|
7930
7954
|
.n-gap-token-8 {
|
|
7931
7955
|
gap:32px;
|
|
7932
7956
|
}
|
|
@@ -42653,9 +42677,6 @@ button.ndl-avatar:focus-visible {
|
|
|
42653
42677
|
.n-stroke-palette-primary-bg-strong {
|
|
42654
42678
|
stroke:rgb(var(--theme-palette-primary-bg-strong));
|
|
42655
42679
|
}
|
|
42656
|
-
.n-p-10 {
|
|
42657
|
-
padding:40px;
|
|
42658
|
-
}
|
|
42659
42680
|
.n-p-14 {
|
|
42660
42681
|
padding:56px;
|
|
42661
42682
|
}
|
|
@@ -42684,10 +42705,6 @@ button.ndl-avatar:focus-visible {
|
|
|
42684
42705
|
padding-left:40px;
|
|
42685
42706
|
padding-right:40px;
|
|
42686
42707
|
}
|
|
42687
|
-
.n-px-5 {
|
|
42688
|
-
padding-left:20px;
|
|
42689
|
-
padding-right:20px;
|
|
42690
|
-
}
|
|
42691
42708
|
.n-px-token-3 {
|
|
42692
42709
|
padding-left:4px;
|
|
42693
42710
|
padding-right:4px;
|
|
@@ -42712,10 +42729,6 @@ button.ndl-avatar:focus-visible {
|
|
|
42712
42729
|
padding-left:48px;
|
|
42713
42730
|
padding-right:48px;
|
|
42714
42731
|
}
|
|
42715
|
-
.n-py-6 {
|
|
42716
|
-
padding-top:24px;
|
|
42717
|
-
padding-bottom:24px;
|
|
42718
|
-
}
|
|
42719
42732
|
.n-py-token-2 {
|
|
42720
42733
|
padding-top:2px;
|
|
42721
42734
|
padding-bottom:2px;
|
package/lib/tokens/js/tokens.js
CHANGED