MediaWiki:Common.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1,263:
/* ── House table column widths — tunable here, no re-publishing needed ── */
:root {
--wt-col-min: 6em; /* default data-column floorcolumns (class="col") */
--wt-col-min-wide: 9em; /* wide data columns (class="col-wide") */
}
/* Floor for legacy pages published with inline widths (safe to keep wiki-wide) */
.wikitable th:not(:first-child),
.wikitable td:not(:first-child) { min-width: var(--wt-col-min); }
/* Marked data columns: pinned width + floor */
.wikitable th.col,
.wikitable td.col { width: var(--wt-col); min-width: var(--wt-col); }
.wikitable th.col-wide,
.wikitable td.col-wide { min-width: var(--wt-col-wide); min-width: var(--wt-col-wide); }