@seed-design/css 1.1.19 → 1.1.24
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/all.css +3 -4
- package/all.min.css +1 -1
- package/base.css +1 -2
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/identity-placeholder.css +2 -2
- package/recipes/identity-placeholder.d.ts +1 -1
- package/recipes/identity-placeholder.mjs +2 -1
- package/vars/component/identity-placeholder.d.ts +2 -2
- package/vars/component/identity-placeholder.mjs +2 -2
package/all.css
CHANGED
|
@@ -186,8 +186,7 @@
|
|
|
186
186
|
gap: var(--seed-box-gap);
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
.seed-box:is(:active, [data-active]) {
|
|
190
|
-
--seed-box-background--active: var(--seed-box-background);
|
|
189
|
+
.seed-box[data-has-active-bg]:is(:active, [data-active]) {
|
|
191
190
|
background: var(--seed-box-background--active);
|
|
192
191
|
}
|
|
193
192
|
|
|
@@ -4481,7 +4480,7 @@
|
|
|
4481
4480
|
.seed-identity-placeholder__root {
|
|
4482
4481
|
box-sizing: border-box;
|
|
4483
4482
|
vertical-align: top;
|
|
4484
|
-
background-color: var(--seed-color-palette-gray-
|
|
4483
|
+
background-color: var(--seed-color-palette-gray-500);
|
|
4485
4484
|
justify-content: center;
|
|
4486
4485
|
align-items: center;
|
|
4487
4486
|
width: 100%;
|
|
@@ -4492,9 +4491,9 @@
|
|
|
4492
4491
|
|
|
4493
4492
|
.seed-identity-placeholder__image {
|
|
4494
4493
|
object-fit: cover;
|
|
4495
|
-
fill: #f7f8fa;
|
|
4496
4494
|
width: 100%;
|
|
4497
4495
|
height: 100%;
|
|
4496
|
+
fill: var(--seed-color-palette-static-white-alpha-800);
|
|
4498
4497
|
display: block;
|
|
4499
4498
|
overflow: hidden;
|
|
4500
4499
|
}
|