@neo4j-ndl/base 2.11.5 → 2.11.6
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 +26 -4
- 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
|
@@ -4265,7 +4265,7 @@ a.ndl-btn {
|
|
|
4265
4265
|
background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23018BFF' stroke-width='2' stroke-dasharray='8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
4266
4266
|
}
|
|
4267
4267
|
.ndl-dropzone .ndl-dropzone-header {
|
|
4268
|
-
margin-bottom:
|
|
4268
|
+
margin-bottom:12px;
|
|
4269
4269
|
display:flex;
|
|
4270
4270
|
flex-direction:column;
|
|
4271
4271
|
row-gap:24px;
|
|
@@ -4318,6 +4318,28 @@ a.ndl-btn {
|
|
|
4318
4318
|
letter-spacing:0.016rem;
|
|
4319
4319
|
line-height:1.25rem;
|
|
4320
4320
|
}
|
|
4321
|
+
.ndl-dropzone .ndl-dropzone-footer .ndl-dropzone-loading-progress-bar-wrapper {
|
|
4322
|
+
display:flex;
|
|
4323
|
+
width:100%;
|
|
4324
|
+
flex-direction:column;
|
|
4325
|
+
align-items:center;
|
|
4326
|
+
justify-content:center;
|
|
4327
|
+
gap:4px;
|
|
4328
|
+
}
|
|
4329
|
+
.ndl-dropzone .ndl-dropzone-footer .ndl-dropzone-loading-progress-bar-wrapper .ndl-dropzone-loading-progress-bar-indicators {
|
|
4330
|
+
display:flex;
|
|
4331
|
+
align-items:center;
|
|
4332
|
+
justify-content:center;
|
|
4333
|
+
-moz-column-gap:4px;
|
|
4334
|
+
column-gap:4px;
|
|
4335
|
+
padding-bottom:4px;
|
|
4336
|
+
}
|
|
4337
|
+
.ndl-dropzone .ndl-dropzone-footer .ndl-dropzone-loading-progress-bar-wrapper .ndl-dropzone-loading-progress-bar-precentage {
|
|
4338
|
+
letter-spacing:0em;
|
|
4339
|
+
}
|
|
4340
|
+
.ndl-dropzone .ndl-dropzone-footer .ndl-dropzone-loading-progress-bar-wrapper .ndl-dropzone-loading-progress-bar-minute {
|
|
4341
|
+
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
4342
|
+
}
|
|
4321
4343
|
.ndl-dropzone:not(.ndl-drag-disabled) .ndl-file-support-text {
|
|
4322
4344
|
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
4323
4345
|
}
|
|
@@ -6866,12 +6888,12 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
6866
6888
|
.n-h-token-9 {
|
|
6867
6889
|
height:48px;
|
|
6868
6890
|
}
|
|
6869
|
-
.n-w-40 {
|
|
6870
|
-
width:160px;
|
|
6871
|
-
}
|
|
6872
6891
|
.n-w-48 {
|
|
6873
6892
|
width:192px;
|
|
6874
6893
|
}
|
|
6894
|
+
.n-w-\[150\%\] {
|
|
6895
|
+
width:150%;
|
|
6896
|
+
}
|
|
6875
6897
|
.n-w-full {
|
|
6876
6898
|
width:100%;
|
|
6877
6899
|
}
|
package/lib/tokens/js/tokens.js
CHANGED