This commit is contained in:
33333-33333 2026-07-15 16:27:56 +09:00
commit fc7c94bd69
26 changed files with 1167 additions and 271 deletions

View file

@ -1229,3 +1229,14 @@
/* v39.16.56: keep the upper-limit heading on one line in the compact panel. */
.colony-limit-section .colony-setting-section-head > span { font-size: 10.8px; white-space: nowrap; }
.colony-limit-section .colony-setting-section-head > small { font-size: 9px; white-space: nowrap; }
/* v39.16.60: align both upper-limit sliders independently of label length. */
.colony-limit-grid { display: grid; gap: 7px; }
.colony-limit-row { display: grid; grid-template-columns: 82px minmax(0, 1fr) 58px; align-items: center; gap: 8px; min-width: 0; }
.colony-limit-row > span { min-width: 0; font-size: 11px; font-weight: 700; white-space: nowrap; }
.colony-limit-slider { width: 100%; min-width: 0; margin: 0; }
.colony-limit-number { width: 58px; min-width: 0; box-sizing: border-box; }
@media (max-width: 520px) {
.colony-limit-row { grid-template-columns: 72px minmax(0, 1fr) 54px; gap: 6px; }
.colony-limit-number { width: 54px; }
}