@planningcenter/tapestry 4.0.0-rc.4 → 4.0.0-rc.6

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/unstable.css CHANGED
@@ -3208,12 +3208,27 @@ tds-sidenav-section:not(.hydrated) > [slot="ssr"]{
3208
3208
  .tds-button-group > .tds-btn{
3209
3209
  --tds-button-group-item-z-index:1;
3210
3210
 
3211
+ position:relative;
3211
3212
  z-index:var(--tds-button-group-item-z-index);
3212
3213
  border-radius:0;
3213
3214
  }
3214
3215
  :is(.tds-button-group > .tds-btn):not(:first-child){
3215
3216
  margin-inline-start:calc(var(--tds-btn-border-width) * -1);
3216
3217
  }
3218
+ :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{
3219
+ position:absolute;
3220
+ inset-block:calc(var(--tds-btn-border-width) * -1);
3221
+ width:var(--tds-btn-border-width);
3222
+ pointer-events:none;
3223
+ content:"";
3224
+ background-color:var(--t-border-color-white);
3225
+ }
3226
+ :is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:first-child)::before{
3227
+ inset-inline-start:calc(var(--tds-btn-border-width) * -1);
3228
+ }
3229
+ :is(.tds-button-group > .tds-btn):is(.tds-btn--interaction,.tds-btn--neutral,.tds-btn--pill):not(:last-child)::after{
3230
+ inset-inline-end:calc(var(--tds-btn-border-width) * -1);
3231
+ }
3217
3232
  :is(.tds-button-group > .tds-btn):hover{
3218
3233
  --tds-button-group-item-z-index:2;
3219
3234
  }