@neo4j-ndl/base 3.1.0 → 3.1.2
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 +10 -7
- 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
|
@@ -4201,9 +4201,9 @@ a.ndl-btn {
|
|
|
4201
4201
|
align-self:stretch;
|
|
4202
4202
|
}
|
|
4203
4203
|
.ndl-select-indicators-container .ndl-select-divider {
|
|
4204
|
-
height:
|
|
4204
|
+
height:75%;
|
|
4205
4205
|
width:1px;
|
|
4206
|
-
background-color:rgb(var(--theme-palette-neutral-border-
|
|
4206
|
+
background-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
4207
4207
|
}
|
|
4208
4208
|
.ndl-select-indicators-container.ndl-small {
|
|
4209
4209
|
gap:4px;
|
|
@@ -5664,6 +5664,11 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5664
5664
|
|
|
5665
5665
|
transition:var(--transitions-full-quick);
|
|
5666
5666
|
}
|
|
5667
|
+
.ndl-side-navigation .ndl-side-navigation-nav-list {
|
|
5668
|
+
display:flex;
|
|
5669
|
+
flex-direction:column;
|
|
5670
|
+
gap:4px;
|
|
5671
|
+
}
|
|
5667
5672
|
.ndl-side-navigation:not(.ndl-expanded) {
|
|
5668
5673
|
width:64px;
|
|
5669
5674
|
min-width:64px;
|
|
@@ -5740,8 +5745,6 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5740
5745
|
background-color:rgb(var(--theme-palette-neutral-bg-strong));
|
|
5741
5746
|
}
|
|
5742
5747
|
.ndl-side-navigation .ndl-side-navigation-nav-item {
|
|
5743
|
-
margin-top:2px;
|
|
5744
|
-
margin-bottom:2px;
|
|
5745
5748
|
margin-left:12px;
|
|
5746
5749
|
margin-right:7px;
|
|
5747
5750
|
}
|
|
@@ -5819,8 +5822,6 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5819
5822
|
color:rgb(var(--theme-palette-primary-text));
|
|
5820
5823
|
}
|
|
5821
5824
|
.ndl-side-navigation .ndl-side-navigation-nav-item-small {
|
|
5822
|
-
margin-top:2px;
|
|
5823
|
-
margin-bottom:2px;
|
|
5824
5825
|
margin-left:8px;
|
|
5825
5826
|
margin-right:7px;
|
|
5826
5827
|
}
|
|
@@ -5869,7 +5870,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5869
5870
|
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
5870
5871
|
}
|
|
5871
5872
|
.ndl-side-navigation .ndl-side-navigation-nav-item-small > .ndl-side-navigation-inner-item.ndl-side-navigation-group-header{
|
|
5872
|
-
height:
|
|
5873
|
+
height:auto;
|
|
5874
|
+
padding-top:8px;
|
|
5875
|
+
padding-bottom:8px;
|
|
5873
5876
|
font-family:var(--font-font-family-h6), sans-serif;
|
|
5874
5877
|
font-size:var(--font-size-h6);
|
|
5875
5878
|
font-weight:var(--font-weight-bold);
|
package/lib/tokens/js/tokens.js
CHANGED