@neo4j-ndl/base 1.3.3 → 1.3.4
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/CHANGELOG.md +6 -0
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.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 +25 -17
- 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/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -459,7 +459,7 @@ video {
|
|
|
459
459
|
*/
|
|
460
460
|
/**
|
|
461
461
|
* Do not edit directly
|
|
462
|
-
* Generated on
|
|
462
|
+
* Generated on Thu, 11 May 2023 12:06:23 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -3630,27 +3630,35 @@ a.ndl-btn{
|
|
|
3630
3630
|
.ndl-dropdown .ndl-dropdown-icon{
|
|
3631
3631
|
color: rgb(var(--palette-neutral-text-weak));
|
|
3632
3632
|
}
|
|
3633
|
-
.ndl-dropdown .ndl-dropdown-icon.ndl-small
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
.ndl-dropdown .ndl-dropdown-icon.ndl-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3633
|
+
.ndl-dropdown .ndl-dropdown-icon.ndl-extra-small{
|
|
3634
|
+
height: 1rem;
|
|
3635
|
+
width: 1rem;
|
|
3636
|
+
}
|
|
3637
|
+
.ndl-dropdown .ndl-dropdown-icon.ndl-small{
|
|
3638
|
+
height: 1.25rem;
|
|
3639
|
+
width: 1.25rem;
|
|
3640
|
+
}
|
|
3641
|
+
.ndl-dropdown .ndl-dropdown-icon.ndl-large{
|
|
3642
|
+
height: 1.5rem;
|
|
3643
|
+
width: 1.5rem;
|
|
3644
|
+
}
|
|
3641
3645
|
.ndl-dropdown .ndl-indicator {
|
|
3642
3646
|
width: 1px;
|
|
3643
3647
|
height: 100%;
|
|
3644
3648
|
background-color: rgb(var(--palette-neutral-border-strong));
|
|
3645
3649
|
}
|
|
3646
|
-
.ndl-dropdown .ndl-error-icon.ndl-small
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
.ndl-dropdown .ndl-error-icon.ndl-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3650
|
+
.ndl-dropdown .ndl-error-icon.ndl-extra-small{
|
|
3651
|
+
height: 1rem;
|
|
3652
|
+
width: 1rem;
|
|
3653
|
+
}
|
|
3654
|
+
.ndl-dropdown .ndl-error-icon.ndl-small{
|
|
3655
|
+
height: 1.25rem;
|
|
3656
|
+
width: 1.25rem;
|
|
3657
|
+
}
|
|
3658
|
+
.ndl-dropdown .ndl-error-icon.ndl-large{
|
|
3659
|
+
height: 1.5rem;
|
|
3660
|
+
width: 1.5rem;
|
|
3661
|
+
}
|
|
3654
3662
|
.ndl-dropdown .ndl-error-icon{
|
|
3655
3663
|
color: rgb(var(--palette-danger-icon));
|
|
3656
3664
|
}
|
package/lib/tokens/js/tokens.js
CHANGED