Apply global mobile slider wrap label-over-slider in pulldown panels

This commit is contained in:
2026-05-19 15:55:44 +02:00
parent 6c8a58df54
commit bf34176f79
+8 -24
View File
@@ -1624,14 +1624,18 @@ section + section {
} }
.sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-label { .sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-label {
min-width: 0; min-width: 100%;
flex: 0 0 auto; flex: 0 0 100%;
grid-column: 1 / -1;
grid-row: 1;
} }
.sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider { .sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider {
min-width: 0; min-width: 0;
max-width: 100%; max-width: 100%;
width: 100%; width: 100%;
grid-column: 1;
grid-row: 2;
} }
.sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider-value { .sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider-value {
@@ -1639,33 +1643,13 @@ section + section {
justify-self: end; justify-self: end;
align-self: center; align-self: center;
white-space: nowrap; white-space: nowrap;
grid-column: 2;
grid-row: 2;
} }
.sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-activatable-remove { .sg-options-row .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-activatable-remove {
position: static; position: static;
transform: none; transform: none;
grid-column: 3;
grid-row: 1;
}
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-label {
min-width: 100%;
flex: 0 0 100%;
grid-column: 1 / -1;
grid-row: 1;
}
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider {
grid-column: 1;
grid-row: 2;
}
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-slider-value {
grid-column: 2;
grid-row: 2;
}
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-panel .sg-slider-row[data-activatable="true"] .sg-activatable-remove {
grid-column: 3; grid-column: 3;
grid-row: 2; grid-row: 2;
} }