@navikt/ds-css 6.7.0 → 6.7.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/CHANGELOG.md +6 -0
- package/dist/component/index.css +11 -8
- package/dist/component/index.min.css +1 -1
- package/dist/component/progressbar.css +7 -5
- package/dist/component/progressbar.min.css +1 -1
- package/dist/component/readmore.css +3 -2
- package/dist/component/readmore.min.css +1 -1
- package/dist/components.css +10 -7
- package/dist/components.min.css +1 -1
- package/dist/global/tokens.css +1 -1
- package/dist/index.css +11 -8
- package/dist/index.min.css +1 -1
- package/package.json +2 -2
- package/progress-bar.css +7 -5
- package/read-more.css +3 -2
package/dist/global/tokens.css
CHANGED
package/dist/index.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Fri, 10 May 2024 12:39:18 GMT
|
|
5
5
|
*/
|
|
6
6
|
:root, :host {
|
|
7
7
|
--a-spacing-1-alt: 0.375rem;
|
|
@@ -6222,13 +6222,14 @@ button.navds-internalheader__title:active,
|
|
|
6222
6222
|
font-size: 1.25rem;
|
|
6223
6223
|
}
|
|
6224
6224
|
.navds-read-more__button:hover > .navds-read-more__expand-icon {
|
|
6225
|
-
|
|
6225
|
+
position: relative;
|
|
6226
|
+
top: 1px;
|
|
6226
6227
|
}
|
|
6227
6228
|
.navds-read-more--open > .navds-read-more__button > .navds-read-more__expand-icon {
|
|
6228
6229
|
transform: rotate(-180deg);
|
|
6229
6230
|
}
|
|
6230
6231
|
.navds-read-more--open > .navds-read-more__button:hover > .navds-read-more__expand-icon {
|
|
6231
|
-
|
|
6232
|
+
top: -1px;
|
|
6232
6233
|
}
|
|
6233
6234
|
.navds-progress-bar {
|
|
6234
6235
|
background: var(--a-surface-neutral-subtle);
|
|
@@ -6266,15 +6267,14 @@ button.navds-internalheader__title:active,
|
|
|
6266
6267
|
transition: transform 0.2s ease;
|
|
6267
6268
|
}
|
|
6268
6269
|
.navds-progress-bar__foreground--indeterminate {
|
|
6269
|
-
--__ac-progress-bar-
|
|
6270
|
-
--__ac-progress-bar-delay: initial;
|
|
6270
|
+
--__ac-progress-bar-simulated: initial;
|
|
6271
6271
|
|
|
6272
6272
|
animation-name: navds-progress-bar-indeterminate-grow, navds-progress-bar-indeterminate;
|
|
6273
6273
|
animation-timing-function: ease-in-out, ease-in-out;
|
|
6274
|
-
animation-duration: var(--__ac-progress-bar-
|
|
6274
|
+
animation-duration: var(--__ac-progress-bar-simulated), 2500ms;
|
|
6275
6275
|
animation-fill-mode: forwards, none;
|
|
6276
6276
|
animation-iteration-count: 1, infinite;
|
|
6277
|
-
animation-delay: 0s,
|
|
6277
|
+
animation-delay: 0s, var(--__ac-progress-bar-simulated);
|
|
6278
6278
|
}
|
|
6279
6279
|
/* navds-progress-bar-indeterminate wave animation */
|
|
6280
6280
|
@keyframes navds-progress-bar-indeterminate {
|
|
@@ -6310,11 +6310,14 @@ button.navds-internalheader__title:active,
|
|
|
6310
6310
|
transform: translateX(-40%);
|
|
6311
6311
|
}
|
|
6312
6312
|
|
|
6313
|
-
40%,
|
|
6314
6313
|
50% {
|
|
6315
6314
|
transform: translateX(-20%);
|
|
6316
6315
|
}
|
|
6317
6316
|
|
|
6317
|
+
75% {
|
|
6318
|
+
transform: translateX(-10%);
|
|
6319
|
+
}
|
|
6320
|
+
|
|
6318
6321
|
100% {
|
|
6319
6322
|
transform: translateX(-10%);
|
|
6320
6323
|
}
|