@planningcenter/tapestry 3.8.1-rc.1 → 3.8.1-rc.2
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/dist/index.css +11 -2
- package/dist/index.css.map +1 -1
- package/dist/reactRender.css +1108 -1099
- package/dist/reactRender.css.map +1 -1
- package/dist/reactRenderLegacy.css +1108 -1099
- package/dist/reactRenderLegacy.css.map +1 -1
- package/dist/unstable.css +11 -2
- package/dist/unstable.css.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -3965,9 +3965,13 @@ tds-sidenav-section:not(.hydrated) > [slot="ssr"]{
|
|
|
3965
3965
|
}
|
|
3966
3966
|
.tds-dropdown-item{
|
|
3967
3967
|
--tds-dropdown-item-color:var(--t-text-color);
|
|
3968
|
+
--tds-dropdown-item-row-gap:0;
|
|
3969
|
+
--tds-dropdown-item-column-gap:var(--t-spacing-1);
|
|
3968
3970
|
|
|
3969
3971
|
display:flex;
|
|
3970
|
-
gap:var(--
|
|
3972
|
+
row-gap:var(--tds-dropdown-item-row-gap);
|
|
3973
|
+
-moz-column-gap:var(--tds-dropdown-item-column-gap);
|
|
3974
|
+
column-gap:var(--tds-dropdown-item-column-gap);
|
|
3971
3975
|
align-items:center;
|
|
3972
3976
|
padding-block:var(--t-spacing-1);
|
|
3973
3977
|
padding-inline:var(--t-spacing-2);
|
|
@@ -4014,12 +4018,16 @@ a.tds-dropdown-item:is(:hover, :active){
|
|
|
4014
4018
|
color:var(--t-text-color-secondary);
|
|
4015
4019
|
}
|
|
4016
4020
|
.tds-dropdown-item:has([slot="description"]){
|
|
4021
|
+
--tds-dropdown-item-row-gap:var(--t-spacing-half);
|
|
4022
|
+
--tds-dropdown-item-column-gap:0;
|
|
4023
|
+
|
|
4017
4024
|
display:grid;
|
|
4018
|
-
grid-template-areas:"prefix label suffix" "
|
|
4025
|
+
grid-template-areas:"prefix label suffix" ". description .";
|
|
4019
4026
|
grid-template-columns:auto 1fr auto;
|
|
4020
4027
|
}
|
|
4021
4028
|
.tds-dropdown-item:has([slot="description"]) [slot="prefix"]{
|
|
4022
4029
|
grid-area:prefix;
|
|
4030
|
+
margin-inline-end:var(--t-spacing-1);
|
|
4023
4031
|
}
|
|
4024
4032
|
.tds-dropdown-item:has([slot="description"]) [slot="label"]{
|
|
4025
4033
|
grid-area:label;
|
|
@@ -4029,6 +4037,7 @@ a.tds-dropdown-item:is(:hover, :active){
|
|
|
4029
4037
|
}
|
|
4030
4038
|
.tds-dropdown-item:has([slot="description"]) [slot="suffix"]{
|
|
4031
4039
|
grid-area:suffix;
|
|
4040
|
+
margin-inline-start:var(--t-spacing-1);
|
|
4032
4041
|
}
|
|
4033
4042
|
.tds-dropdown-section:not(:first-child){
|
|
4034
4043
|
margin-block-start:var(--t-spacing-half);
|