@neo4j-ndl/base 2.11.9 → 2.11.11
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 +12 -3
- 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
|
@@ -5342,7 +5342,7 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5342
5342
|
display:inline-flex;
|
|
5343
5343
|
align-items:baseline;
|
|
5344
5344
|
flex-direction:row;
|
|
5345
|
-
|
|
5345
|
+
position:relative;
|
|
5346
5346
|
-moz-column-gap:2px;
|
|
5347
5347
|
column-gap:2px;
|
|
5348
5348
|
}
|
|
@@ -5360,12 +5360,21 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5360
5360
|
color:rgb(var(--theme-palette-primary-pressed-strong));
|
|
5361
5361
|
}
|
|
5362
5362
|
.ndl-text-link:focus-visible{
|
|
5363
|
+
outline:none;
|
|
5364
|
+
}
|
|
5365
|
+
.ndl-text-link:focus-visible::after {
|
|
5366
|
+
content:'';
|
|
5367
|
+
position:absolute;
|
|
5368
|
+
width:calc(100% + 1px);
|
|
5369
|
+
left:-1px;
|
|
5370
|
+
top:3px;
|
|
5371
|
+
height:calc(100% - 6px);
|
|
5363
5372
|
outline:2px solid rgb(var(--theme-palette-primary-focus));
|
|
5364
5373
|
color:rgb(var(--theme-palette-primary-pressed-strong));
|
|
5365
5374
|
box-sizing:border-box;
|
|
5366
5375
|
border-radius:4px;
|
|
5367
|
-
outline-offset
|
|
5368
|
-
|
|
5376
|
+
outline-offset:0px;
|
|
5377
|
+
}
|
|
5369
5378
|
.ndl-text-link.ndl-disabled-text-link{
|
|
5370
5379
|
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
5371
5380
|
pointer-events:none;
|
package/lib/tokens/js/tokens.js
CHANGED