@neo4j-ndl/base 3.7.18 → 3.7.19
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 +20 -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
|
@@ -2613,13 +2613,13 @@ a.ndl-btn {
|
|
|
2613
2613
|
z-index:40;
|
|
2614
2614
|
flex-direction:column;
|
|
2615
2615
|
border-width:1px;
|
|
2616
|
-
outline:2px solid transparent;
|
|
2617
|
-
outline-offset:2px;
|
|
2618
2616
|
max-height:95vh;
|
|
2619
2617
|
min-width:250px;
|
|
2620
2618
|
overflow-y:auto;
|
|
2621
2619
|
text-align:start;
|
|
2622
2620
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2621
|
+
outline:2px solid transparent;
|
|
2622
|
+
outline-offset:2px;
|
|
2623
2623
|
}
|
|
2624
2624
|
.ndl-menu .ndl-menu-items {
|
|
2625
2625
|
display:flex;
|
|
@@ -2924,6 +2924,11 @@ a.ndl-btn {
|
|
|
2924
2924
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:hover {
|
|
2925
2925
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
2926
2926
|
}
|
|
2927
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:focus,
|
|
2928
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:focus-visible {
|
|
2929
|
+
outline:2px solid transparent;
|
|
2930
|
+
outline-offset:2px;
|
|
2931
|
+
}
|
|
2927
2932
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--range-start,
|
|
2928
2933
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selecting-range-start {
|
|
2929
2934
|
border-top-left-radius:8px;
|
|
@@ -5012,7 +5017,10 @@ a.ndl-btn {
|
|
|
5012
5017
|
width:100%;
|
|
5013
5018
|
overflow-y:auto;
|
|
5014
5019
|
}
|
|
5015
|
-
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus {
|
|
5020
|
+
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus-visible {
|
|
5021
|
+
border-radius:4px;
|
|
5022
|
+
outline-width:2px;
|
|
5023
|
+
outline-offset:0px;
|
|
5016
5024
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
5017
5025
|
}
|
|
5018
5026
|
.ndl-code-block-container .ndl-code-block-actions {
|
|
@@ -8220,6 +8228,12 @@ button.ndl-avatar:focus-visible {
|
|
|
8220
8228
|
.ndl-color-picker .ndl-color-picker-rgb-inputs .ndl-color-picker-rgb-input {
|
|
8221
8229
|
flex:1 1 0%;
|
|
8222
8230
|
}
|
|
8231
|
+
.ndl-color-picker .w-color-interactive:focus-visible {
|
|
8232
|
+
border-radius:8px;
|
|
8233
|
+
outline-width:2px;
|
|
8234
|
+
outline-offset:1px;
|
|
8235
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
8236
|
+
}
|
|
8223
8237
|
.ndl-side-nav{
|
|
8224
8238
|
--side-nav-width-collapsed:52px;
|
|
8225
8239
|
--side-nav-width-expanded:196px;
|
|
@@ -61226,6 +61240,9 @@ html{
|
|
|
61226
61240
|
-moz-osx-font-smoothing:grayscale;
|
|
61227
61241
|
text-rendering:optimizeLegibility;
|
|
61228
61242
|
}
|
|
61243
|
+
*:focus-visible {
|
|
61244
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
61245
|
+
}
|
|
61229
61246
|
.first\:n-rounded-t-sm:first-child {
|
|
61230
61247
|
border-top-left-radius:4px;
|
|
61231
61248
|
border-top-right-radius:4px;
|
package/lib/tokens/js/tokens.js
CHANGED