Keep activatable slider width stable when showing remove control

This commit is contained in:
2026-05-19 11:43:37 +02:00
parent 1c1f2f0316
commit cd4e237680
+10 -2
View File
@@ -930,8 +930,16 @@ section + section {
color: var(--text-control-default); color: var(--text-control-default);
} }
.sg-slider-row .sg-activatable-remove { .sg-slider-row[data-activatable="true"] {
flex: 0 0 auto; position: relative;
padding-right: calc(var(--interaction-height) + var(--spacing-small));
}
.sg-slider-row[data-activatable="true"] .sg-activatable-remove {
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
} }
.sg-slider-row--inactive-selectable { .sg-slider-row--inactive-selectable {