@neo4j-ndl/base 3.2.12 → 3.3.1
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 +36 -0
- 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
|
@@ -6458,6 +6458,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6458
6458
|
border-width:1px;
|
|
6459
6459
|
border-style:solid;
|
|
6460
6460
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
6461
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
6461
6462
|
outline:2px solid transparent;
|
|
6462
6463
|
outline-offset:2px;
|
|
6463
6464
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
@@ -7532,6 +7533,41 @@ button.ndl-avatar:focus-visible {
|
|
|
7532
7533
|
animation-timing-function:ease-out;
|
|
7533
7534
|
}
|
|
7534
7535
|
}
|
|
7536
|
+
@keyframes ndl-loading-bar{
|
|
7537
|
+
0%{
|
|
7538
|
+
transform:translateX(-100%);
|
|
7539
|
+
}
|
|
7540
|
+
100%{
|
|
7541
|
+
transform:translateX(130%);
|
|
7542
|
+
}
|
|
7543
|
+
}
|
|
7544
|
+
.ndl-loading-bar {
|
|
7545
|
+
position:relative;
|
|
7546
|
+
height:3px;
|
|
7547
|
+
width:100%;
|
|
7548
|
+
overflow:hidden;
|
|
7549
|
+
}
|
|
7550
|
+
.ndl-loading-bar.ndl-loading-bar-rail {
|
|
7551
|
+
background-color:rgb(var(--theme-palette-neutral-bg-strong));
|
|
7552
|
+
}
|
|
7553
|
+
.ndl-loading-bar::before{
|
|
7554
|
+
content:'';
|
|
7555
|
+
transform:translateX(-100%);
|
|
7556
|
+
animation:1.5s linear infinite ndl-loading-bar;
|
|
7557
|
+
position:absolute;
|
|
7558
|
+
top:0;
|
|
7559
|
+
left:0;
|
|
7560
|
+
width:100%;
|
|
7561
|
+
height:100%;
|
|
7562
|
+
transition:transform 0.5s;
|
|
7563
|
+
background:linear-gradient(
|
|
7564
|
+
90deg,
|
|
7565
|
+
transparent 0%,
|
|
7566
|
+
rgb(var(--theme-palette-primary-bg-status)) 30%,
|
|
7567
|
+
rgb(var(--theme-palette-primary-bg-status)) 70%,
|
|
7568
|
+
transparent 100%
|
|
7569
|
+
);
|
|
7570
|
+
}
|
|
7535
7571
|
.n-absolute {
|
|
7536
7572
|
position:absolute;
|
|
7537
7573
|
}
|
package/lib/tokens/js/tokens.js
CHANGED