@neo4j-ndl/base 3.2.2 → 3.2.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 +23 -31
- 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
|
@@ -4830,23 +4830,15 @@ a.ndl-btn {
|
|
|
4830
4830
|
.ndl-wizard.ndl-wizard-small .ndl-wizard-step-complete .ndl-wizard-circle {
|
|
4831
4831
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
4832
4832
|
}
|
|
4833
|
-
|
|
4834
|
-
--background:var(--theme-light-palette-neutral-bg-default);
|
|
4835
|
-
--border:var(--theme-light-palette-neutral-border-weak);
|
|
4836
|
-
}
|
|
4837
|
-
.ndl-theme-dark{
|
|
4838
|
-
--background:var(--theme-dark-palette-neutral-bg-strong);
|
|
4839
|
-
--border:var(--theme-dark-palette-neutral-border-strong);
|
|
4840
|
-
}
|
|
4841
|
-
.ndl-code-block-container{
|
|
4842
|
-
background:rgb(var(--background));
|
|
4843
|
-
border-color:rgb(var(--border));
|
|
4833
|
+
.ndl-code-block-container {
|
|
4844
4834
|
position:relative;
|
|
4845
4835
|
isolation:isolate;
|
|
4846
4836
|
min-height:90px;
|
|
4847
4837
|
overflow:hidden;
|
|
4848
4838
|
border-radius:8px;
|
|
4849
4839
|
border-width:1px;
|
|
4840
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4841
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4850
4842
|
padding-top:12px;
|
|
4851
4843
|
padding-bottom:4px;
|
|
4852
4844
|
}
|
|
@@ -4898,28 +4890,28 @@ a.ndl-btn {
|
|
|
4898
4890
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus {
|
|
4899
4891
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
4900
4892
|
}
|
|
4901
|
-
.ndl-code-block-container .ndl-code-block-actions{
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4893
|
+
.ndl-code-block-container .ndl-code-block-actions {
|
|
4894
|
+
position:absolute;
|
|
4895
|
+
top:0px;
|
|
4896
|
+
right:0px;
|
|
4897
|
+
z-index:10;
|
|
4898
|
+
display:flex;
|
|
4899
|
+
border-radius:8px;
|
|
4900
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4901
|
+
padding:4px;
|
|
4902
|
+
}
|
|
4911
4903
|
.ndl-code-block-container .ndl-code-block-actions.ndl-disabled {
|
|
4912
4904
|
opacity:0.5;
|
|
4913
4905
|
}
|
|
4914
|
-
.ndl-code-block-container .ndl-code-block-expand-button{
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
|
|
4906
|
+
.ndl-code-block-container .ndl-code-block-expand-button {
|
|
4907
|
+
position:absolute;
|
|
4908
|
+
bottom:0px;
|
|
4909
|
+
right:0px;
|
|
4910
|
+
z-index:10;
|
|
4911
|
+
border-radius:8px;
|
|
4912
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4913
|
+
padding:4px;
|
|
4914
|
+
}
|
|
4923
4915
|
.ndl-code-block-container .ndl-linenumber{
|
|
4924
4916
|
min-width:32px !important;
|
|
4925
4917
|
}
|
|
@@ -6594,7 +6586,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6594
6586
|
display:inline;
|
|
6595
6587
|
white-space:nowrap;
|
|
6596
6588
|
border-radius:4px;
|
|
6597
|
-
background-color:rgb(var(--theme-palette-neutral-bg-
|
|
6589
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
6598
6590
|
padding-left:2px;
|
|
6599
6591
|
padding-right:2px;
|
|
6600
6592
|
outline:2px solid transparent;
|
package/lib/tokens/js/tokens.js
CHANGED