|
|
Line 13: |
Line 13: |
| .mw-datatable th { | | .mw-datatable th { |
| Β Β Β background-color: var(--color-accent-navy); | | Β Β Β background-color: var(--color-accent-navy); |
| }
| |
| /* Let user tool links wrap instead of forcing one line */
| |
| .mw-usertoollinks {
| |
| Β white-space: normal !important;Β /* undo the nowrap */
| |
| Β overflow-wrap: anywhere;Β Β Β Β /* modern browsers */
| |
| Β word-break: break-word;Β Β Β Β Β /* fallback */
| |
| Β display: inline-block;Β Β Β Β Β /* makes wrapping cleaner inside cells */
| |
| }
| |
| /* 7) Special:ListFiles specifics you already touched, but keep them here for consistency */
| |
| body.page-Special_ListFiles .mw-datatable.listfiles { table-layout: fixed; }
| |
| body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img { max-width: 100%; height: auto; }
| |
| body.page-Special_ListFiles .mw-usertoollinks { white-space: normal !important; overflow-wrap: anywhere; }
| |
| /* FIELDSET: allow shrinking, no scrollbars */
| |
| .continuum-body fieldset {
| |
| Β min-width: 0;Β Β Β Β Β /* crucial in flex layouts */
| |
| Β max-width: 100%;
| |
| Β box-sizing: border-box;
| |
| Β overflow-x: visible;Β /* you said no scrolling */
| |
| }
| |
|
| |
| /* LEGEND shouldnβt inflate width */
| |
| .continuum-body fieldset > legend {
| |
| Β display: block;
| |
| Β max-width: 100%;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
| /* TABLE should fit container and wrap content */
| |
| .continuum-body fieldset table {
| |
| Β width: 100%;
| |
| Β max-width: 100%;
| |
| Β table-layout: fixed;Β Β Β /* enables predictable wrapping */
| |
| Β border-collapse: collapse;
| |
| Β box-sizing: border-box;
| |
| }
| |
|
| |
| /* CELLS: wrap, donβt grow the table */
| |
| .continuum-body fieldset table th,
| |
| .continuum-body fieldset table td {
| |
| Β min-width: 0;Β Β Β Β Β Β /* lets fixed layout actually shrink */
| |
| Β white-space: normal;Β Β Β /* kill any nowraps */
| |
| Β overflow-wrap: anywhere;Β /* modern long-word wrap */
| |
| Β word-break: break-word;Β /* fallback for older browsers */
| |
| }
| |
|
| |
| /* Usual offenders inside cells: links, codey bits, βnowrapβ classes, user tools */
| |
| .continuum-body fieldset table a,
| |
| .continuum-body fieldset table code,
| |
| .continuum-body fieldset table .nowrap,
| |
| .continuum-body fieldset table .mw-usertoollinks,
| |
| .continuum-body fieldset table .mw-sha1,
| |
| .continuum-body fieldset table .mime-type {
| |
| Β white-space: normal !important;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
| /* Images/Thumbs must shrink with the cell */
| |
| .continuum-body fieldset table img {
| |
| Β max-width: 100%;
| |
| Β height: auto;
| |
| Β object-fit: contain;
| |
| Β display: block;
| |
| }
| |
|
| |
| /* ===== Special:Upload (and its stash step) ===== */
| |
| body.page-Special_Upload .continuum-body,
| |
| body.page-Special_UploadStash .continuum-body {
| |
| Β min-width: 0;
| |
| Β max-width: 100%;
| |
| }
| |
|
| |
| /* Fieldsets & forms on Upload */
| |
| body.page-Special_Upload .continuum-body fieldset,
| |
| body.page-Special_UploadStash .continuum-body fieldset {
| |
| Β min-width: 0;
| |
| Β max-width: 100%;
| |
| Β box-sizing: border-box;
| |
| Β overflow: visible; /* no scrollbars, make it fit */
| |
| }
| |
|
| |
| body.page-Special_Upload .continuum-body fieldset > legend,
| |
| body.page-Special_UploadStash .continuum-body fieldset > legend {
| |
| Β display: block;
| |
| Β max-width: 100%;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| Β margin: 0 0 .25em 0;
| |
| }
| |
|
| |
| /* Tables/forms inside Upload */
| |
| body.page-Special_Upload .continuum-body table,
| |
| body.page-Special_UploadStash .continuum-body table {
| |
| Β width: 100%;
| |
| Β max-width: 100%;
| |
| Β table-layout: fixed;
| |
| Β border-collapse: collapse;
| |
| Β box-sizing: border-box;
| |
| }
| |
| body.page-Special_Upload .continuum-body th,
| |
| body.page-Special_Upload .continuum-body td,
| |
| body.page-Special_UploadStash .continuum-body th,
| |
| body.page-Special_UploadStash .continuum-body td {
| |
| Β min-width: 0;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
| body.page-Special_Upload .continuum-body img,
| |
| body.page-Special_UploadStash .continuum-body img {
| |
| Β max-width: 100%;
| |
| Β height: auto;
| |
| Β display: block;
| |
| }
| |
|
| |
| /* ===== Special:ListFiles ===== */
| |
| body.page-Special_ListFiles .continuum-body { min-width: 0; max-width: 100%; }
| |
|
| |
| body.page-Special_ListFiles .mw-datatable.listfiles {
| |
| Β width: 100%;
| |
| Β max-width: 100%;
| |
| Β table-layout: fixed;
| |
| Β border-collapse: collapse;
| |
| }
| |
| body.page-Special_ListFiles .mw-datatable.listfiles th,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles td {
| |
| Β min-width: 0;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
| /* Thumbnails column stays narrow; images shrink to fit */
| |
| body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles th.TablePager_col_thumb { width: 120px; }
| |
| body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img {
| |
| Β max-width: 100%;
| |
| Β height: auto;
| |
| Β object-fit: contain;
| |
| Β display: block;
| |
| }
| |
|
| |
| /* Usual overflow goblins on ListFiles only */
| |
| body.page-Special_ListFiles .mw-usertoollinks,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles .mw-sha1,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles .mime-type,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles .nowrap,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles a,
| |
| body.page-Special_ListFiles .mw-datatable.listfiles code {
| |
| Β white-space: normal !important;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
|
| |
| /* Preformatted chunks (sometimes appear in tables) should wrap too */
| |
| .continuum-body fieldset table pre,
| |
| .continuum-body fieldset table .mw-code {
| |
| Β white-space: pre-wrap;
| |
| Β word-break: break-word;
| |
| }
| |
| /* ===== Fieldset containment: no overflow, no scroll, everything fits ===== */
| |
| .continuum-body fieldset {
| |
| Β position: relative;Β Β /* keeps abs-pos kids referenced here */
| |
| Β min-width: 0;Β Β Β Β Β /* flex/grid shrinking allowed */
| |
| Β max-width: 100%;
| |
| Β box-sizing: border-box;
| |
| Β overflow: visible;Β Β Β /* no scrollbars, no clipping */
| |
| Β padding-top: .75em;Β Β /* legend breathing room */
| |
| }
| |
| .continuum-body fieldset > legend {
| |
| Β display: block;
| |
| Β max-width: 100%;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| Β margin: 0 0 .25em 0;
| |
| }
| |
|
| |
| /* Universal βbe niceβ rules for descendants */
| |
| .continuum-body fieldset * {
| |
| Β box-sizing: border-box;Β /* widths include padding */
| |
| Β min-width: 0;Β Β Β Β Β Β /* critical for flex descendants */
| |
| }
| |
|
| |
| /* Text and links: wrap instead of stretching */
| |
| .continuum-body fieldset,
| |
| .continuum-body fieldset .mw-parser-output,
| |
| .continuum-body fieldset a,
| |
| .continuum-body fieldset code,
| |
| .continuum-body fieldset .nowrap,
| |
| .continuum-body fieldset .mw-usertoollinks,
| |
| .continuum-body fieldset .mw-sha1,
| |
| .continuum-body fieldset .mime-type {
| |
| Β white-space: normal !important;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
| /* Pre/code blocks that otherwise run off the edge */
| |
| .continuum-body fieldset pre,
| |
| .continuum-body fieldset .mw-code {
| |
| Β white-space: pre-wrap;Β Β /* preserve formatting, allow wrap */
| |
| Β overflow-wrap: anywhere;
| |
| }
| |
|
| |
| /* Tables: fill container and wrap cells */
| |
| .continuum-body fieldset table {
| |
| Β width: 100%;
| |
| Β max-width: 100%;
| |
| Β table-layout: fixed;Β Β Β /* predictable widths + wrapping */
| |
| Β border-collapse: collapse;
| |
| }
| |
| .continuum-body fieldset table th,
| |
| .continuum-body fieldset table td {
| |
| Β min-width: 0;
| |
| Β white-space: normal;
| |
| Β overflow-wrap: anywhere;
| |
| Β word-break: break-word;
| |
| }
| |
|
| |
| /* Media shrink to fit */
| |
| .continuum-body fieldset img,
| |
| .continuum-body fieldset svg,
| |
| .continuum-body fieldset video,
| |
| .continuum-body fieldset canvas,
| |
| .continuum-body fieldset audio {
| |
| Β max-width: 100%;
| |
| Β height: auto;
| |
| Β display: block;
| |
| }
| |
|
| |
| /* Iframes & embeds: make them fluid (set aspect-ratio if you know it) */
| |
| .continuum-body fieldset iframe,
| |
| .continuum-body fieldset embed,
| |
| .continuum-body fieldset object {
| |
| Β display: block;
| |
| Β width: 100% !important;
| |
| Β max-width: 100%;
| |
| Β height: auto;
| |
| Β aspect-ratio: 16 / 9;Β /* adjust per your content, prevents goofy heights */
| |
| }
| |
|
| |
| /* Forms & OOUI controls: never overflow narrow containers */
| |
| .continuum-body fieldset input,
| |
| .continuum-body fieldset select,
| |
| .continuum-body fieldset textarea,
| |
| .continuum-body fieldset button {
| |
| Β max-width: 100%;
| |
| } | | } |