@neo4j-ndl/base 2.12.1 → 2.12.3
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 +57 -1
- 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
|
@@ -3904,6 +3904,16 @@ a.ndl-btn {
|
|
|
3904
3904
|
z-index:2;
|
|
3905
3905
|
border:2px solid rgb(var(--theme-palette-primary-focus));
|
|
3906
3906
|
}
|
|
3907
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-pinned-cell {
|
|
3908
|
+
position:sticky;
|
|
3909
|
+
}
|
|
3910
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-pinned-cell-left {
|
|
3911
|
+
left:0px;
|
|
3912
|
+
z-index:1;
|
|
3913
|
+
}
|
|
3914
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-pinned-cell-right {
|
|
3915
|
+
right:0px;
|
|
3916
|
+
}
|
|
3907
3917
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .nld-table-placeholder-wrapper{
|
|
3908
3918
|
min-height:80px;
|
|
3909
3919
|
pointer-events:none;
|
|
@@ -3929,7 +3939,6 @@ a.ndl-btn {
|
|
|
3929
3939
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-thead{
|
|
3930
3940
|
position:sticky;
|
|
3931
3941
|
top:0;
|
|
3932
|
-
background-color:var(--header-background);
|
|
3933
3942
|
z-index:var(--z-index-alias-overlay);
|
|
3934
3943
|
}
|
|
3935
3944
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-thead .ndl-data-grid-tr{
|
|
@@ -3997,6 +4006,7 @@ a.ndl-btn {
|
|
|
3997
4006
|
justify-content:space-between;
|
|
3998
4007
|
align-items:center;
|
|
3999
4008
|
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
4009
|
+
background-color:var(--header-background);
|
|
4000
4010
|
display:flex;
|
|
4001
4011
|
flex-direction:row;
|
|
4002
4012
|
gap:4px;
|
|
@@ -4011,6 +4021,16 @@ a.ndl-btn {
|
|
|
4011
4021
|
position:sticky;
|
|
4012
4022
|
right:0;
|
|
4013
4023
|
}
|
|
4024
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell {
|
|
4025
|
+
position:sticky;
|
|
4026
|
+
}
|
|
4027
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell-left {
|
|
4028
|
+
left:0px;
|
|
4029
|
+
z-index:1;
|
|
4030
|
+
}
|
|
4031
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell-right {
|
|
4032
|
+
right:0px;
|
|
4033
|
+
}
|
|
4014
4034
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-hoverable-indicator{
|
|
4015
4035
|
display:none;
|
|
4016
4036
|
}
|
|
@@ -5837,6 +5857,39 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5837
5857
|
border-style:solid;
|
|
5838
5858
|
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
5839
5859
|
}
|
|
5860
|
+
.ndl-side-navigation .ndl-badge {
|
|
5861
|
+
margin-left:auto;
|
|
5862
|
+
margin-right:16px;
|
|
5863
|
+
display:flex;
|
|
5864
|
+
width:20px;
|
|
5865
|
+
height:20px;
|
|
5866
|
+
justify-content:center;
|
|
5867
|
+
border-radius:4px;
|
|
5868
|
+
}
|
|
5869
|
+
.ndl-side-navigation .ndl-badge.ndl-critical {
|
|
5870
|
+
background-color:rgb(var(--theme-palette-danger-bg-weak));
|
|
5871
|
+
color:rgb(var(--theme-palette-danger-text));
|
|
5872
|
+
}
|
|
5873
|
+
.ndl-side-navigation .ndl-badge.ndl-warning {
|
|
5874
|
+
background-color:rgb(var(--theme-palette-warning-bg-weak));
|
|
5875
|
+
color:rgb(var(--theme-palette-warning-text));
|
|
5876
|
+
}
|
|
5877
|
+
.ndl-side-navigation .ndl-badge.ndl-info {
|
|
5878
|
+
background-color:rgb(var(--theme-palette-primary-bg-weak));
|
|
5879
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
5880
|
+
}
|
|
5881
|
+
.ndl-side-navigation .ndl-selected .ndl-badge.ndl-critical {
|
|
5882
|
+
background-color:rgb(var(--theme-palette-danger-bg-status));
|
|
5883
|
+
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
5884
|
+
}
|
|
5885
|
+
.ndl-side-navigation .ndl-selected .ndl-badge.ndl-warning {
|
|
5886
|
+
background-color:rgb(var(--theme-palette-warning-bg-status));
|
|
5887
|
+
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
5888
|
+
}
|
|
5889
|
+
.ndl-side-navigation .ndl-selected .ndl-badge.ndl-info {
|
|
5890
|
+
background-color:rgb(var(--theme-palette-primary-bg-status));
|
|
5891
|
+
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
5892
|
+
}
|
|
5840
5893
|
.ndl-breadcrumbs {
|
|
5841
5894
|
display:flex;
|
|
5842
5895
|
height:32px;
|
|
@@ -7130,6 +7183,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7130
7183
|
.n-w-token-12 {
|
|
7131
7184
|
width:128px;
|
|
7132
7185
|
}
|
|
7186
|
+
.n-max-w-\[1200px\] {
|
|
7187
|
+
max-width:1200px;
|
|
7188
|
+
}
|
|
7133
7189
|
.n-max-w-max {
|
|
7134
7190
|
max-width:-moz-max-content;
|
|
7135
7191
|
max-width:max-content;
|
package/lib/tokens/js/tokens.js
CHANGED