@neo4j-ndl/base 1.5.4 → 1.5.5
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/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 +8 -2
- 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/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, 15 Jun 2023 09:22:23 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -2006,13 +2006,19 @@ a.ndl-btn{
|
|
|
2006
2006
|
.ndl-form-item input[type='url']:active,
|
|
2007
2007
|
.ndl-form-item input[type='url']:focus{
|
|
2008
2008
|
outline-style: solid;
|
|
2009
|
-
outline-
|
|
2009
|
+
outline-width: 2px;
|
|
2010
|
+
outline-offset: -1px;
|
|
2011
|
+
outline-color: rgb(var(--palette-primary-focus));
|
|
2010
2012
|
}
|
|
2011
2013
|
.ndl-form-item input[type='text']:disabled, .ndl-form-item input[type='email']:disabled, .ndl-form-item input[type='password']:disabled, .ndl-form-item input[type='url']:disabled{
|
|
2012
2014
|
cursor: not-allowed;
|
|
2013
2015
|
color: rgb(var(--palette-neutral-text-weakest));
|
|
2014
2016
|
background-color: inherit;
|
|
2015
2017
|
}
|
|
2018
|
+
.ndl-form-item input[type='text']:disabled:active, .ndl-form-item input[type='email']:disabled:active, .ndl-form-item input[type='password']:disabled:active, .ndl-form-item input[type='url']:disabled:active{
|
|
2019
|
+
outline: 2px solid transparent;
|
|
2020
|
+
outline-offset: 2px;
|
|
2021
|
+
}
|
|
2016
2022
|
/* disabled will also pick up readonly css rule; thats why not disabled */
|
|
2017
2023
|
.ndl-form-item input[type='text']:-moz-read-only:not(:disabled), .ndl-form-item input[type='email']:-moz-read-only:not(:disabled), .ndl-form-item input[type='password']:-moz-read-only:not(:disabled), .ndl-form-item input[type='url']:-moz-read-only:not(:disabled){
|
|
2018
2024
|
border-style: none;
|
package/lib/tokens/js/tokens.js
CHANGED