@seed-design/css 1.0.0 → 1.0.2-alpha-20250926111204
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 +15 -6
- package/all.min.css +1 -1
- package/base.css +8 -6
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/help-bubble.css +4 -0
- package/recipes/manner-temp.css +3 -1
- package/vars/component/manner-temp.d.ts +2 -1
- package/vars/component/manner-temp.mjs +2 -1
package/all.css
CHANGED
|
@@ -59,9 +59,10 @@
|
|
|
59
59
|
width: var(--seed-prefix-icon-size);
|
|
60
60
|
height: var(--seed-prefix-icon-size);
|
|
61
61
|
color: var(--seed-prefix-icon-color, currentColor);
|
|
62
|
-
margin-left: var(--seed-prefix-icon-margin-left);
|
|
63
|
-
margin-right: var(--seed-prefix-icon-margin-right);
|
|
64
|
-
margin-top: var(--seed-prefix-icon-margin-top);
|
|
62
|
+
margin-left: var(--seed-prefix-icon-margin-left, 0);
|
|
63
|
+
margin-right: var(--seed-prefix-icon-margin-right, 0);
|
|
64
|
+
margin-top: var(--seed-prefix-icon-margin-top, 0);
|
|
65
|
+
margin-bottom: var(--seed-prefix-icon-margin-bottom, 0);
|
|
65
66
|
align-self: var(--seed-prefix-icon-align-self);
|
|
66
67
|
justify-self: var(--seed-prefix-icon-justify-self);
|
|
67
68
|
}
|
|
@@ -70,9 +71,10 @@
|
|
|
70
71
|
width: var(--seed-suffix-icon-size);
|
|
71
72
|
height: var(--seed-suffix-icon-size);
|
|
72
73
|
color: var(--seed-suffix-icon-color, currentColor);
|
|
73
|
-
margin-left: var(--seed-suffix-icon-margin-left);
|
|
74
|
-
margin-right: var(--seed-suffix-icon-margin-right);
|
|
75
|
-
margin-top: var(--seed-suffix-icon-margin-top);
|
|
74
|
+
margin-left: var(--seed-suffix-icon-margin-left, 0);
|
|
75
|
+
margin-right: var(--seed-suffix-icon-margin-right, 0);
|
|
76
|
+
margin-top: var(--seed-suffix-icon-margin-top, 0);
|
|
77
|
+
margin-bottom: var(--seed-suffix-icon-margin-bottom, 0);
|
|
76
78
|
align-self: var(--seed-suffix-icon-align-self);
|
|
77
79
|
justify-self: var(--seed-suffix-icon-justify-self);
|
|
78
80
|
}
|
|
@@ -3965,6 +3967,10 @@
|
|
|
3965
3967
|
display: none !important;
|
|
3966
3968
|
}
|
|
3967
3969
|
|
|
3970
|
+
.seed-help-bubble__content {
|
|
3971
|
+
font-size: 0;
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3968
3974
|
.seed-help-bubble__arrow {
|
|
3969
3975
|
width: 12px;
|
|
3970
3976
|
height: 12px;
|
|
@@ -3975,6 +3981,7 @@
|
|
|
3975
3981
|
fill: var(--seed-color-bg-neutral-inverted);
|
|
3976
3982
|
width: 12px;
|
|
3977
3983
|
height: 8px;
|
|
3984
|
+
font-size: 0;
|
|
3978
3985
|
}
|
|
3979
3986
|
|
|
3980
3987
|
.seed-help-bubble__title {
|
|
@@ -4374,6 +4381,8 @@
|
|
|
4374
4381
|
line-height: var(--seed-line-height-t5);
|
|
4375
4382
|
font-weight: var(--seed-font-weight-bold);
|
|
4376
4383
|
--seed-suffix-icon-size: var(--seed-dimension-x8);
|
|
4384
|
+
--seed-suffix-icon-margin-top: calc(var(--seed-dimension-x1) * -1);
|
|
4385
|
+
--seed-suffix-icon-margin-bottom: calc(var(--seed-dimension-x1) * -1);
|
|
4377
4386
|
justify-content: flex-start;
|
|
4378
4387
|
align-items: center;
|
|
4379
4388
|
display: inline-flex;
|