@neo4j-ndl/base 2.12.1 → 2.12.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 +24 -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
|
}
|
|
@@ -7130,6 +7150,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7130
7150
|
.n-w-token-12 {
|
|
7131
7151
|
width:128px;
|
|
7132
7152
|
}
|
|
7153
|
+
.n-max-w-\[1200px\] {
|
|
7154
|
+
max-width:1200px;
|
|
7155
|
+
}
|
|
7133
7156
|
.n-max-w-max {
|
|
7134
7157
|
max-width:-moz-max-content;
|
|
7135
7158
|
max-width:max-content;
|
package/lib/tokens/js/tokens.js
CHANGED