@neo4j-ndl/base 1.5.2 → 1.5.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 +12 -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 +10 -7
- 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 Wed, 14 Jun 2023 09:38:43 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -1146,12 +1146,13 @@ a.ndl-btn{
|
|
|
1146
1146
|
color: rgb(var(--palette-neutral-text-weakest));
|
|
1147
1147
|
}
|
|
1148
1148
|
/* Simple Icons Sizes */
|
|
1149
|
-
.ndl-icon-btn.ndl-small
|
|
1149
|
+
.ndl-icon-btn.ndl-small,
|
|
1150
|
+
.ndl-icon-btn.ndl-extra-small {
|
|
1150
1151
|
width: 24px;
|
|
1151
1152
|
height: 24px;
|
|
1152
1153
|
font-size: 16px;
|
|
1153
1154
|
}
|
|
1154
|
-
.ndl-icon-btn.ndl-small .ndl-icon {
|
|
1155
|
+
.ndl-icon-btn.ndl-small .ndl-icon, .ndl-icon-btn.ndl-extra-small .ndl-icon {
|
|
1155
1156
|
width: 16px;
|
|
1156
1157
|
height: 16px;
|
|
1157
1158
|
}
|
|
@@ -1174,6 +1175,10 @@ a.ndl-btn{
|
|
|
1174
1175
|
height: 24px;
|
|
1175
1176
|
}
|
|
1176
1177
|
/* Grouped Icons Sizes */
|
|
1178
|
+
.ndl-icon-btn.ndl-extra-small:not(.ndl-grouped) {
|
|
1179
|
+
width: 24px;
|
|
1180
|
+
height: 24px;
|
|
1181
|
+
}
|
|
1177
1182
|
.ndl-icon-btn.ndl-small:not(.ndl-grouped) {
|
|
1178
1183
|
width: 32px;
|
|
1179
1184
|
height: 32px;
|
|
@@ -1358,8 +1363,7 @@ a.ndl-btn{
|
|
|
1358
1363
|
width: 100%;
|
|
1359
1364
|
height: 1px;
|
|
1360
1365
|
bottom: 0px;
|
|
1361
|
-
|
|
1362
|
-
left: 1px;
|
|
1366
|
+
left: 0px;
|
|
1363
1367
|
z-index: 0;
|
|
1364
1368
|
background-color: rgb(var(--palette-neutral-border-weak));
|
|
1365
1369
|
}
|
|
@@ -1369,8 +1373,7 @@ a.ndl-btn{
|
|
|
1369
1373
|
width: 100%;
|
|
1370
1374
|
height: 2px;
|
|
1371
1375
|
bottom: 0px;
|
|
1372
|
-
|
|
1373
|
-
left: 1px;
|
|
1376
|
+
left: 0px;
|
|
1374
1377
|
z-index: 0;
|
|
1375
1378
|
background-color: rgb(var(--palette-neutral-border-weak));
|
|
1376
1379
|
}
|
package/lib/tokens/js/tokens.js
CHANGED