@neo4j-ndl/base 3.4.1 → 3.4.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 +14 -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
|
@@ -3214,7 +3214,6 @@ a.ndl-btn {
|
|
|
3214
3214
|
bottom:0;
|
|
3215
3215
|
right:0;
|
|
3216
3216
|
|
|
3217
|
-
background-color:rgba(0, 0, 0, 0.4);
|
|
3218
3217
|
cursor:default;
|
|
3219
3218
|
}
|
|
3220
3219
|
.ndl-modal-root.ndl-modal-container{
|
|
@@ -3223,6 +3222,18 @@ a.ndl-btn {
|
|
|
3223
3222
|
.ndl-modal-root {
|
|
3224
3223
|
z-index:60;
|
|
3225
3224
|
}
|
|
3225
|
+
.ndl-modal-backdrop {
|
|
3226
|
+
position:absolute;
|
|
3227
|
+
top:0px;
|
|
3228
|
+
left:0px;
|
|
3229
|
+
bottom:0px;
|
|
3230
|
+
right:0px;
|
|
3231
|
+
z-index:60;
|
|
3232
|
+
|
|
3233
|
+
background-color:rgba(0, 0, 0, 0.4);
|
|
3234
|
+
-webkit-backdrop-filter:blur(12px);
|
|
3235
|
+
backdrop-filter:blur(12px);
|
|
3236
|
+
}
|
|
3226
3237
|
.ndl-modal {
|
|
3227
3238
|
border-width:1px;
|
|
3228
3239
|
border-style:solid;
|
|
@@ -3249,8 +3260,6 @@ a.ndl-btn {
|
|
|
3249
3260
|
height:100%;
|
|
3250
3261
|
overflow:hidden auto;
|
|
3251
3262
|
text-align:center;
|
|
3252
|
-
-webkit-backdrop-filter:blur(4px);
|
|
3253
|
-
backdrop-filter:blur(4px);
|
|
3254
3263
|
}
|
|
3255
3264
|
.ndl-modal-wrapper:after{
|
|
3256
3265
|
content:'';
|
|
@@ -4645,7 +4654,8 @@ a.ndl-btn {
|
|
|
4645
4654
|
left:-3px;
|
|
4646
4655
|
}
|
|
4647
4656
|
.ndl-relationship-label.ndl-selected .ndl-hexagon-end-active,
|
|
4648
|
-
.ndl-relationship-label.ndl-selected .ndl-square-end-active
|
|
4657
|
+
.ndl-relationship-label.ndl-selected .ndl-square-end-active,
|
|
4658
|
+
.ndl-relationship-label.ndl-selected .ndl-relationship-label-lines {
|
|
4649
4659
|
fill:rgb(var(--theme-palette-primary-focus));
|
|
4650
4660
|
}
|
|
4651
4661
|
.ndl-relationship-label.ndl-selected .ndl-relationship-label-container:after {
|
package/lib/tokens/js/tokens.js
CHANGED