@neo4j-ndl/base 3.3.20 → 3.3.22
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 +6 -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
|
@@ -3212,7 +3212,10 @@ a.ndl-btn {
|
|
|
3212
3212
|
.ndl-modal-root {
|
|
3213
3213
|
z-index:60;
|
|
3214
3214
|
}
|
|
3215
|
-
.ndl-modal{
|
|
3215
|
+
.ndl-modal {
|
|
3216
|
+
border-width:1px;
|
|
3217
|
+
border-style:solid;
|
|
3218
|
+
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3216
3219
|
position:relative;
|
|
3217
3220
|
overflow-y:auto;
|
|
3218
3221
|
display:inline-block;
|
|
@@ -3235,6 +3238,8 @@ a.ndl-btn {
|
|
|
3235
3238
|
height:100%;
|
|
3236
3239
|
overflow:hidden auto;
|
|
3237
3240
|
text-align:center;
|
|
3241
|
+
-webkit-backdrop-filter:blur(4px);
|
|
3242
|
+
backdrop-filter:blur(4px);
|
|
3238
3243
|
}
|
|
3239
3244
|
.ndl-modal-wrapper:after{
|
|
3240
3245
|
content:'';
|
package/lib/tokens/js/tokens.js
CHANGED