@planningcenter/tapestry 4.0.0-rc.3 → 4.0.0-rc.5
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 +15 -0
- package/dist/index.css.map +1 -1
- package/dist/reactRender.css +888 -873
- package/dist/reactRender.css.map +1 -1
- package/dist/reactRenderLegacy.css +888 -873
- package/dist/reactRenderLegacy.css.map +1 -1
- package/dist/unstable.css +15 -0
- package/dist/unstable.css.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2872,12 +2872,27 @@ tds-sidenav-section:not(.hydrated) > [slot="ssr"]{
|
|
|
2872
2872
|
.tds-button-group > .tds-btn{
|
|
2873
2873
|
--tds-button-group-item-z-index:1;
|
|
2874
2874
|
|
|
2875
|
+
position:relative;
|
|
2875
2876
|
z-index:var(--tds-button-group-item-z-index);
|
|
2876
2877
|
border-radius:0;
|
|
2877
2878
|
}
|
|
2878
2879
|
:is(.tds-button-group > .tds-btn):not(:first-child){
|
|
2879
2880
|
margin-inline-start:calc(var(--tds-btn-border-width) * -1);
|
|
2880
2881
|
}
|
|
2882
|
+
:is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:first-child)::before,:is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:last-child)::after{
|
|
2883
|
+
position:absolute;
|
|
2884
|
+
inset-block:calc(var(--tds-btn-border-width) * -1);
|
|
2885
|
+
width:var(--tds-btn-border-width);
|
|
2886
|
+
pointer-events:none;
|
|
2887
|
+
content:"";
|
|
2888
|
+
background-color:var(--t-border-color-white);
|
|
2889
|
+
}
|
|
2890
|
+
:is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:first-child)::before{
|
|
2891
|
+
inset-inline-start:calc(var(--tds-btn-border-width) * -1);
|
|
2892
|
+
}
|
|
2893
|
+
:is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:last-child)::after{
|
|
2894
|
+
inset-inline-end:calc(var(--tds-btn-border-width) * -1);
|
|
2895
|
+
}
|
|
2881
2896
|
:is(.tds-button-group > .tds-btn):hover{
|
|
2882
2897
|
--tds-button-group-item-z-index:2;
|
|
2883
2898
|
}
|