@neo4j-ndl/base 3.0.5 → 3.0.7
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 +5 -8
- 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
|
@@ -1193,7 +1193,7 @@ h6,
|
|
|
1193
1193
|
}
|
|
1194
1194
|
.ndl-btn{
|
|
1195
1195
|
transition:background-color var(--transitions-stripped-quick);
|
|
1196
|
-
display:inline-
|
|
1196
|
+
display:inline-flex;
|
|
1197
1197
|
cursor:pointer;
|
|
1198
1198
|
align-items:center;
|
|
1199
1199
|
justify-content:center;
|
|
@@ -1210,9 +1210,6 @@ h6,
|
|
|
1210
1210
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1211
1211
|
--tw-ring-offset-width:2px;
|
|
1212
1212
|
}
|
|
1213
|
-
.ndl-btn{
|
|
1214
|
-
grid-template-columns:1fr auto;
|
|
1215
|
-
}
|
|
1216
1213
|
.ndl-btn.ndl-loading {
|
|
1217
1214
|
cursor:default;
|
|
1218
1215
|
vertical-align:middle;
|
|
@@ -4761,7 +4758,7 @@ a.ndl-btn {
|
|
|
4761
4758
|
color:white;
|
|
4762
4759
|
border:none;
|
|
4763
4760
|
transition:background-color var(--transitions-stripped-quick);
|
|
4764
|
-
display:inline-
|
|
4761
|
+
display:inline-flex;
|
|
4765
4762
|
cursor:pointer;
|
|
4766
4763
|
align-items:center;
|
|
4767
4764
|
justify-content:center;
|
|
@@ -4778,9 +4775,6 @@ a.ndl-btn {
|
|
|
4778
4775
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
4779
4776
|
--tw-ring-offset-width:2px;
|
|
4780
4777
|
}
|
|
4781
|
-
.ndl-cypher-editor .cm-editor .cm-button, .ndl-codemirror-editor .cm-editor .cm-button{
|
|
4782
|
-
grid-template-columns:1fr auto;
|
|
4783
|
-
}
|
|
4784
4778
|
.ndl-cypher-editor .cm-editor .cm-button.ndl-loading, .ndl-codemirror-editor .cm-editor .cm-button.ndl-loading {
|
|
4785
4779
|
cursor:default;
|
|
4786
4780
|
vertical-align:middle;
|
|
@@ -6700,6 +6694,9 @@ button.ndl-avatar:focus-visible {
|
|
|
6700
6694
|
.ndl-text-input.ndl-read-only.ndl-large .ndl-input-wrapper {
|
|
6701
6695
|
height:20px;
|
|
6702
6696
|
}
|
|
6697
|
+
.ndl-tooltip-content {
|
|
6698
|
+
z-index:50;
|
|
6699
|
+
}
|
|
6703
6700
|
.ndl-tooltip-content.ndl-tooltip-content-simple {
|
|
6704
6701
|
border-radius:8px;
|
|
6705
6702
|
background-color:rgb(var(--theme-palette-neutral-bg-strongest));
|
package/lib/tokens/js/tokens.js
CHANGED