Template:Inflection-table-top/style.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
m (1 revision imported)
No edit summary
Line 11: Line 11:
padding: 3px;
padding: 3px;
margin: 0.5em 0; /* matches styling for <p> elements in Vector classic */
margin: 0.5em 0; /* matches styling for <p> elements in Vector classic */
background: var(--wikt-palette-paleblue); /* standard MediaWiki table background colour. Note this color also appears a few other times in this file - search for BGC */
background: #f8f9fa; /* standard MediaWiki table background colour */
border: 1px solid var(--wikt-palette-grey);
border: 1px solid #9e9e9e;
     position: relative; /* needed for NavToggle styles */
     position: relative; /* needed for NavToggle styles */
/* SHOULD BE width: fit-content, BUT THE CSS SANITIZER DOESN'T LIKE IT.. */
max-width: 100%;
max-width: 100%;
box-sizing: border-box;
box-sizing: border-box;
Line 30: Line 29:


.inflection-table-wrapper > table {
.inflection-table-wrapper > table {
display: table; /* override Minerva styles */
display: table;
width: 100%; /* of containing div - needed when the notes are wider than the table itself */
width: 100%;
margin: 0; /* override Minerva styles */
margin: 0;
text-align: center;
text-align: center;
border-collapse: collapse;
border-collapse: collapse;
border: 1px solid var(--wikt-palette-grey-6);
border: 1px solid #b4b4b4;
background: var(--wikt-palette-white);
background: #ffffff;
}
}


.inflection-table-wrapper > table > caption {
.inflection-table-wrapper > table > caption {
display: table-caption; /* override Minerva styles */
display: table-caption;
background: var(--wikt-palette-paleblue); /* BGC - Minerva resets this, so we have to set it back again */
background: #f8f9fa;
text-align: left;
text-align: left;
font-size: 95%;
font-size: 95%;
Line 55: Line 54:
.inflection-table-wrapper > table > tbody > tr > th {
.inflection-table-wrapper > table > tbody > tr > th {
padding: 0.15em 0.6em;
padding: 0.15em 0.6em;
border: solid var(--wikt-palette-grey-6);
border: solid #b4b4b4;
border-width: 0 1px 1px 0;
border-width: 0 1px 1px 0;
}
}
Line 63: Line 62:
}
}


/* very-narrow class for use on tables of unusually short words (e.g. pronouns) */
/* note, this rule needs to have higher specificity than the previous rule, so even
  though the :not selectors are unnecessary styling-wise, we need to keep them */
.inflection-table-wrapper.very-narrow > table > tbody > tr > td:not(.secondary):not(.separator) {
.inflection-table-wrapper.very-narrow > table > tbody > tr > td:not(.secondary):not(.separator) {
min-width: auto;
min-width: auto;
Line 71: Line 67:


.inflection-table-wrapper > table > tbody > tr > td.secondary {
.inflection-table-wrapper > table > tbody > tr > td.secondary {
background: var(--wikt-palette-lightergrey);
background: #eeeeee;
}
}


Line 84: Line 80:
}
}


/* separator cells, or blank cells: see [[Template:la-adecl]] and [[Template:ga-decl-noun]] */
.inflection-table-wrapper .separator {
.inflection-table-wrapper .separator {
height: 0.5em;
height: 0.5em;
Line 91: Line 86:
min-width: 0.5em;
min-width: 0.5em;
padding: 0;
padding: 0;
background: var(--wikt-palette-paleblue); /* BGC */
background: #f8f9fa;
}
}
.inflection-table-wrapper .separator[rowspan] { /* vertical separator */
.inflection-table-wrapper .separator[rowspan] {
border-top: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-top: 1px solid #f8f9fa;
border-bottom: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-bottom: 1px solid #f8f9fa;
}
}
.inflection-table-wrapper .separator[colspan] { /* horizontal separator */
.inflection-table-wrapper .separator[colspan] {
border-left: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-left: 1px solid #f8f9fa;
border-right: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-right: 1px solid #f8f9fa;
}
}


/* blank cell at end of row: see [[Template:sco-conj-be]] */
.inflection-table-wrapper .blank-end-row {
.inflection-table-wrapper .blank-end-row {
background: var(--wikt-palette-paleblue); /* BGC */
background: #f8f9fa;
border-right: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-right: 1px solid #f8f9fa;
border-top: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-top: 1px solid #f8f9fa;
border-bottom: 1px solid var(--wikt-palette-paleblue); /* BGC */
border-bottom: 1px solid #f8f9fa;
}
}
/* Notes at foot of table */


.inflection-table-notes {
.inflection-table-notes {
text-align: left; /* undo centering in inflection boxes */
text-align: left;
margin: 0.2em 0.5em 0.2em;
margin: 0.2em 0.5em 0.2em;
}
}
Line 124: Line 116:
font-size: 90%;
font-size: 90%;
}
}
/* Collapsibility */


html.client-js .inflection-table-collapsed > table,
html.client-js .inflection-table-collapsed > table,
Line 134: Line 124:


html.client-js .inflection-table-collapsed > table > tbody {
html.client-js .inflection-table-collapsed > table > tbody {
visibility: collapse; /* the perfect solution for this use case, but is not implemented in some browsers (Safari - the new IE) */
visibility: collapse;
}
}


html.client-js .inflection-table-collapsed > table > caption {
html.client-js .inflection-table-collapsed > table > caption {
margin-bottom: -0.15em; /* reduce excessive height of collapsed box - not entirely sure where this height originates from, so this is a hack */
margin-bottom: -0.15em;
}
}


html.client-js .inflection-table-collapsed .inflection-table-notes {
html.client-js .inflection-table-collapsed .inflection-table-notes {
display: none; /* collapse notes */
display: none;
}
}


/* workaround for browsers that do not support visibility: collapse. The .no-vc class is removed by JS code when not needed */
html.client-js .inflection-table-collapsible.no-vc.inflection-table-collapsed {
html.client-js .inflection-table-collapsible.no-vc.inflection-table-collapsed {
max-height: calc(1.5em + 8px); /* almost 1lh (= 1.6em) + padding and border on .inflection-table-wrapper */
max-height: calc(1.5em + 8px);
overflow: hidden;
overflow: hidden;
}
}
Line 154: Line 143:
}
}
html.client-js .inflection-table-collapsible.no-vc > table > caption {
html.client-js .inflection-table-collapsible.no-vc > table > caption {
white-space: nowrap; /* if there was ever more than one line of text, it would get occluded by the <div>'s max-height */
white-space: nowrap;
}
}
.no-vc-spacer {
.no-vc-spacer {
Line 160: Line 149:
width: 4em;
width: 4em;
}
}
 
/* make sure [hide] link doesn't scroll away when table is uncollapsed */
.inflection-table-wrapper .NavToggle {
.inflection-table-wrapper .NavToggle {
position: sticky;
position: sticky;
     right: 0.5em; /* matches padding on <caption> */
     right: 0.5em;
     background: inherit;
     background: inherit;
}
}
/* Single border display style - EXPERIMENTAL! */


.inflection-table-wrapper.single-border {
.inflection-table-wrapper.single-border {
Line 176: Line 162:


.inflection-table-wrapper.single-border > table > caption {
.inflection-table-wrapper.single-border > table > caption {
border: 1px solid var(--wikt-palette-grey);
border: 1px solid #9e9e9e;
border-bottom: 0;
border-bottom: 0;
}
}


html.client-js .inflection-table-collapsed.single-border > table > caption {
html.client-js .inflection-table-collapsed.single-border > table > caption {
border-bottom: 1px solid var(--wikt-palette-grey);
border-bottom: 1px solid #9e9e9e;
}
}


.inflection-table-wrapper.inflection-table-collapsible.single-border .inflection-table-notes {
.inflection-table-wrapper.inflection-table-collapsible.single-border .inflection-table-notes {
border: 1px solid var(--wikt-palette-grey);
border: 1px solid #9e9e9e;
border-top: 0;
border-top: 0;
}
}


/* Mobile styling */
@media all and (max-width: 639px) {
 
@media all and (max-width: 639px) { /* matches calc(640px - 1px) in Minerva CSS */
     .inflection-table-wrapper {
     .inflection-table-wrapper {
         overflow: auto;
         overflow: auto;
         max-width: 100%;
         max-width: 100%;
         width: auto !important; /* override inline style that is being used to avoid a CSS sanitiser bug/lacuna - has to have !important to allow this */
         width: auto !important;
     }
     }
   
 
    /* fix for collapsed tables */
.inflection-table-collapsed tbody {
.inflection-table-collapsed tbody {
display: none;
display: none;
}
}
 
/* make sure [hide] link doesn't scroll away when table is uncollapsed */
.inflection-table-wrapper .NavToggle {
.inflection-table-wrapper .NavToggle {
position: sticky;
position: sticky;
    right: 0.5em; /* matches padding on <caption> */
    right: 0.5em;
    background: inherit;
    background: inherit;
}
}
 
/* when there is a single column of header cells down the left, "stick" this column in place */
.inflection-table-wrapper.sticky-left-column > table > tbody > tr > th:first-child {
.inflection-table-wrapper.sticky-left-column > table > tbody > tr > th:first-child {
position: sticky;
position: sticky;
left: -4px; /* counteract 3px padding on .inflection-table-wrapper + 1px border on table */
left: -4px;
max-width: 35vw; /* limit these cells to 35% of screen width */
max-width: 35vw;
}
}
.inflection-table-wrapper.inflection-table-no-title.sticky-left-column > table > tbody > tr > th:first-child {
.inflection-table-wrapper.inflection-table-no-title.sticky-left-column > table > tbody > tr > th:first-child {
left: -1px; /* counteract 1px border on table */
left: -1px;
}
}
}
}
/* Place transliterations in a paler colour on their own line */


.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.tr {
.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.tr {
color: var(--wikt-palette-darkgrey); /* TODO this is just slightly below AAA contrast when used on a -0 coloured background */
color: #6b6b6b;
}
}
.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.tr:before {
.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.tr:before {
content: "\a"; /* newline */
content: "\a";
white-space: pre;
white-space: pre;
}
}
.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.mention-gloss-paren {
.inflection-table-wrapper:not(.tr-alongside) table > tbody td span.mention-gloss-paren {
display: none; /* hide parens surrounding translit */
display: none;
}
}
/* Inflection boxes - multiple tables inside one box */


.inflection-box > table {
.inflection-box > table {
Line 253: Line 230:
}
}


/* overqualified on purpose to increase specificity */
.inflection-box .inflection-table-wrapper > table.inflection-table {
.inflection-box .inflection-table-wrapper > table.inflection-table {
background: var(--wikt-palette-white); /* override no-title palette rules below */
background: #ffffff;
}
}


.inflection-box.flow-vertical .inflection-table-wrapper {
.inflection-box.flow-vertical .inflection-table-wrapper {
display: block;
display: block;
width: auto !important; /* override inline style that is being used to avoid a CSS sanitiser bug/lacuna - has to have !important to allow this */
width: auto !important;
}
}


.inflection-box.flow-vertical .inflection-table-wrapper + .inflection-table-wrapper {
.inflection-box.flow-vertical .inflection-table-wrapper + .inflection-table-wrapper {
margin-top: 0.5em; /* mimic a .separator row between adjacent tables */
margin-top: 0.5em;
}
}


Line 314: Line 290:


.inflection-table-red.inflection-table-no-title table {
.inflection-table-red.inflection-table-no-title table {
  background-color: var(--wikt-palette-red-0); /* when no title, provide a colour that gently contrasts with the page background */
    background-color: #ffe5e5;
}
}
.inflection-table-red tr.secondary > th,
.inflection-table-red tr.secondary > th,
.inflection-table-red th.secondary,
.inflection-table-red th.secondary,
.inflection-table tr.inflection-table-red.secondary > th,
.inflection-table tr.inflection-table-red.secondary > th,
.inflection-table tr.inflection-table-red > th.secondary,
.inflection-table tr.inflection-table-red > th.secondary,
.inflection-table tr.secondary > th.inflection-table-red,
.inflection-table tr.secondary > th.inflection-table-red,
.inflection-table th.inflection-table-red.secondary {
.inflection-table th.inflection-table-red.secondary {
  background-color: var(--wikt-palette-red-1);
    background-color: #ffcccc;
}
}
.inflection-table-red th,
.inflection-table-red th,
.inflection-table tr.inflection-table-red > th,
.inflection-table tr.inflection-table-red > th,
.inflection-table th.inflection-table-red {
.inflection-table th.inflection-table-red {
  background-color: var(--wikt-palette-red-2);
    background-color: #ff9999;
}
}
.inflection-table-red tr.outer > th,
.inflection-table-red tr.outer > th,
.inflection-table-red th.outer,
.inflection-table-red th.outer,
.inflection-table tr.inflection-table-red.outer > th,
.inflection-table tr.inflection-table-red.outer > th,
.inflection-table tr.inflection-table-red > th.outer,
.inflection-table tr.inflection-table-red > th.outer,
.inflection-table tr.outer > th.inflection-table-red,
.inflection-table tr.outer > th.inflection-table-red,
.inflection-table th.inflection-table-red.outer {
.inflection-table th.inflection-table-red.outer {
  background-color: var(--wikt-palette-red-4);
    background-color: #ff4d4d;
}
}
.inflection-table-red tr.darker > td,
.inflection-table-red tr.darker > td,
.inflection-table-red td.darker,
.inflection-table-red td.darker,
.inflection-table tr.inflection-table-red.darker > td,
.inflection-table tr.inflection-table-red.darker > td,
.inflection-table tr.inflection-table-red > td.darker,
.inflection-table tr.inflection-table-red > td.darker,
.inflection-table tr.darker > td.inflection-table-red,
.inflection-table tr.darker > td.inflection-table-red,
.inflection-table td.inflection-table-red.darker {
.inflection-table td.inflection-table-red.darker {
  background-color: var(--wikt-palette-grey-red-1) !important;
    background-color: #b30000 !important;
}
}
.inflection-table-scarlet.inflection-table-no-title table {
 
  background-color: var(--wikt-palette-scarlet-0);  /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table-scarlet.inflection-table-no-title table {
}
    background-color: #ffe6e6;
.inflection-table-scarlet tr.secondary > th,
}
.inflection-table-scarlet th.secondary,
.inflection-table-scarlet tr.secondary > th,
.inflection-table tr.inflection-table-scarlet.secondary > th,
.inflection-table-scarlet th.secondary,
.inflection-table tr.inflection-table-scarlet > th.secondary,
.inflection-table tr.inflection-table-scarlet.secondary > th,
.inflection-table tr.secondary > th.inflection-table-scarlet,
.inflection-table tr.inflection-table-scarlet > th.secondary,
.inflection-table th.inflection-table-scarlet.secondary {
.inflection-table tr.secondary > th.inflection-table-scarlet,
  background-color: var(--wikt-palette-scarlet-1);
.inflection-table th.inflection-table-scarlet.secondary {
}
    background-color: #ffcccc;
.inflection-table-scarlet th,
}
.inflection-table tr.inflection-table-scarlet > th,
.inflection-table-scarlet th,
.inflection-table th.inflection-table-scarlet {
.inflection-table tr.inflection-table-scarlet > th,
  background-color: var(--wikt-palette-scarlet-2);
.inflection-table th.inflection-table-scarlet {
}
    background-color: #ff9999;
.inflection-table-scarlet tr.outer > th,
}
.inflection-table-scarlet th.outer,
.inflection-table-scarlet tr.outer > th,
.inflection-table tr.inflection-table-scarlet.outer > th,
.inflection-table-scarlet th.outer,
.inflection-table tr.inflection-table-scarlet > th.outer,
.inflection-table tr.inflection-table-scarlet.outer > th,
.inflection-table tr.outer > th.inflection-table-scarlet,
.inflection-table tr.inflection-table-scarlet > th.outer,
.inflection-table th.inflection-table-scarlet.outer {
.inflection-table tr.outer > th.inflection-table-scarlet,
  background-color: var(--wikt-palette-scarlet-4);
.inflection-table th.inflection-table-scarlet.outer {
}
    background-color: #ff4d4d;
.inflection-table-scarlet tr.darker > td,
}
.inflection-table-scarlet td.darker,
.inflection-table-scarlet tr.darker > td,
.inflection-table tr.inflection-table-scarlet.darker > td,
.inflection-table-scarlet td.darker,
.inflection-table tr.inflection-table-scarlet > td.darker,
.inflection-table tr.inflection-table-scarlet.darker > td,
.inflection-table tr.darker > td.inflection-table-scarlet,
.inflection-table tr.inflection-table-scarlet > td.darker,
.inflection-table td.inflection-table-scarlet.darker {
.inflection-table tr.darker > td.inflection-table-scarlet,
  background-color: var(--wikt-palette-grey-scarlet-1) !important;
.inflection-table td.inflection-table-scarlet.darker {
}
    background-color: #b30000 !important;
.inflection-table-orange.inflection-table-no-title table {
}
  background-color: var(--wikt-palette-orange-0);  /* when no title, provide a colour that gently contrasts with the page background */
 
}
.inflection-table-orange.inflection-table-no-title table {
.inflection-table-orange tr.secondary > th,
    background-color: #fff2e5;
.inflection-table-orange th.secondary,
}
.inflection-table tr.inflection-table-orange.secondary > th,
.inflection-table-orange tr.secondary > th,
.inflection-table tr.inflection-table-orange > th.secondary,
.inflection-table-orange th.secondary,
.inflection-table tr.secondary > th.inflection-table-orange,
.inflection-table tr.inflection-table-orange.secondary > th,
.inflection-table th.inflection-table-orange.secondary {
.inflection-table tr.inflection-table-orange > th.secondary,
  background-color: var(--wikt-palette-orange-1);
.inflection-table tr.secondary > th.inflection-table-orange,
}
.inflection-table th.inflection-table-orange.secondary {
.inflection-table-orange th,
    background-color: #ffd9b3;
.inflection-table tr.inflection-table-orange > th,
}
.inflection-table th.inflection-table-orange {
.inflection-table-orange th,
  background-color: var(--wikt-palette-orange-2);
.inflection-table tr.inflection-table-orange > th,
}
.inflection-table th.inflection-table-orange {
.inflection-table-orange tr.outer > th,
    background-color: #ffb366;
.inflection-table-orange th.outer,
}
.inflection-table tr.inflection-table-orange.outer > th,
.inflection-table-orange tr.outer > th,
.inflection-table tr.inflection-table-orange > th.outer,
.inflection-table-orange th.outer,
.inflection-table tr.outer > th.inflection-table-orange,
.inflection-table tr.inflection-table-orange.outer > th,
.inflection-table th.inflection-table-orange.outer {
.inflection-table tr.inflection-table-orange > th.outer,
  background-color: var(--wikt-palette-orange-4);
.inflection-table tr.outer > th.inflection-table-orange,
}
.inflection-table th.inflection-table-orange.outer {
.inflection-table-orange tr.darker > td,
    background-color: #ff6600;
.inflection-table-orange td.darker,
}
.inflection-table tr.inflection-table-orange.darker > td,
.inflection-table-orange tr.darker > td,
.inflection-table tr.inflection-table-orange > td.darker,
.inflection-table-orange td.darker,
.inflection-table tr.darker > td.inflection-table-orange,
.inflection-table tr.inflection-table-orange.darker > td,
.inflection-table td.inflection-table-orange.darker {
.inflection-table tr.inflection-table-orange > td.darker,
  background-color: var(--wikt-palette-grey-orange-1) !important;
.inflection-table tr.darker > td.inflection-table-orange,
}
.inflection-table td.inflection-table-orange.darker {
.inflection-table-amber.inflection-table-no-title table {
    background-color: #b34700 !important;
  background-color: var(--wikt-palette-amber-0);  /* when no title, provide a colour that gently contrasts with the page background */
}
}
 
.inflection-table-amber tr.secondary > th,
.inflection-table-amber.inflection-table-no-title table {
.inflection-table-amber th.secondary,
    background-color: #fff7e5;
.inflection-table tr.inflection-table-amber.secondary > th,
}
.inflection-table tr.inflection-table-amber > th.secondary,
.inflection-table-amber tr.secondary > th,
.inflection-table tr.secondary > th.inflection-table-amber,
.inflection-table-amber th.secondary,
.inflection-table th.inflection-table-amber.secondary {
.inflection-table tr.inflection-table-amber.secondary > th,
  background-color: var(--wikt-palette-amber-1);
.inflection-table tr.inflection-table-amber > th.secondary,
}
.inflection-table tr.secondary > th.inflection-table-amber,
.inflection-table-amber th,
.inflection-table th.inflection-table-amber.secondary {
.inflection-table tr.inflection-table-amber > th,
    background-color: #ffedb3;
.inflection-table th.inflection-table-amber {
}
  background-color: var(--wikt-palette-amber-2);
.inflection-table-amber th,
}
.inflection-table tr.inflection-table-amber > th,
.inflection-table-amber tr.outer > th,
.inflection-table th.inflection-table-amber {
.inflection-table-amber th.outer,
    background-color: #ffd966;
.inflection-table tr.inflection-table-amber.outer > th,
}
.inflection-table tr.inflection-table-amber > th.outer,
.inflection-table-amber tr.outer > th,
.inflection-table tr.outer > th.inflection-table-amber,
.inflection-table-amber th.outer,
.inflection-table th.inflection-table-amber.outer {
.inflection-table tr.inflection-table-amber.outer > th,
  background-color: var(--wikt-palette-amber-4);
.inflection-table tr.inflection-table-amber > th.outer,
}
.inflection-table tr.outer > th.inflection-table-amber,
.inflection-table-amber tr.darker > td,
.inflection-table th.inflection-table-amber.outer {
.inflection-table-amber td.darker,
    background-color: #ffb300;
.inflection-table tr.inflection-table-amber.darker > td,
}
.inflection-table tr.inflection-table-amber > td.darker,
.inflection-table-amber tr.darker > td,
.inflection-table tr.darker > td.inflection-table-amber,
.inflection-table-amber td.darker,
.inflection-table td.inflection-table-amber.darker {
.inflection-table tr.inflection-table-amber.darker > td,
  background-color: var(--wikt-palette-grey-amber-1) !important;
.inflection-table tr.inflection-table-amber > td.darker,
}
.inflection-table tr.darker > td.inflection-table-amber,
.inflection-table-yellow.inflection-table-no-title table {
.inflection-table td.inflection-table-amber.darker {
  background-color: var(--wikt-palette-yellow-0);  /* when no title, provide a colour that gently contrasts with the page background */
    background-color: #b38600 !important;
}
}
.inflection-table-yellow tr.secondary > th,
 
.inflection-table-yellow th.secondary,
.inflection-table-yellow.inflection-table-no-title table {
.inflection-table tr.inflection-table-yellow.secondary > th,
    background-color: #ffffe5;
.inflection-table tr.inflection-table-yellow > th.secondary,
}
.inflection-table tr.secondary > th.inflection-table-yellow,
.inflection-table-yellow tr.secondary > th,
.inflection-table th.inflection-table-yellow.secondary {
.inflection-table-yellow th.secondary,
  background-color: var(--wikt-palette-yellow-1);
.inflection-table tr.inflection-table-yellow.secondary > th,
}
.inflection-table tr.inflection-table-yellow > th.secondary,
.inflection-table-yellow th,
.inflection-table tr.secondary > th.inflection-table-yellow,
.inflection-table tr.inflection-table-yellow > th,
.inflection-table th.inflection-table-yellow.secondary {
.inflection-table th.inflection-table-yellow {
    background-color: #ffffb3;
  background-color: var(--wikt-palette-yellow-2);
}
}
.inflection-table-yellow th,
.inflection-table-yellow tr.outer > th,
.inflection-table tr.inflection-table-yellow > th,
.inflection-table-yellow th.outer,
.inflection-table th.inflection-table-yellow {
.inflection-table tr.inflection-table-yellow.outer > th,
    background-color: #ffff66;
.inflection-table tr.inflection-table-yellow > th.outer,
}
.inflection-table tr.outer > th.inflection-table-yellow,
.inflection-table-yellow tr.outer > th,
.inflection-table th.inflection-table-yellow.outer {
.inflection-table-yellow th.outer,
  background-color: var(--wikt-palette-yellow-4);
.inflection-table tr.inflection-table-yellow.outer > th,
}
.inflection-table tr.inflection-table-yellow > th.outer,
.inflection-table-yellow tr.darker > td,
.inflection-table tr.outer > th.inflection-table-yellow,
.inflection-table-yellow td.darker,
.inflection-table th.inflection-table-yellow.outer {
.inflection-table tr.inflection-table-yellow.darker > td,
    background-color: #ffeb00;
.inflection-table tr.inflection-table-yellow > td.darker,
}
.inflection-table tr.darker > td.inflection-table-yellow,
.inflection-table-yellow tr.darker > td,
.inflection-table td.inflection-table-yellow.darker {
.inflection-table-yellow td.darker,
  background-color: var(--wikt-palette-grey-yellow-1) !important;
.inflection-table tr.inflection-table-yellow.darker > td,
}
.inflection-table tr.inflection-table-yellow > td.darker,
.inflection-table-lime.inflection-table-no-title table {
.inflection-table tr.darker > td.inflection-table-yellow,
  background-color: var(--wikt-palette-lime-0);  /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table td.inflection-table-yellow.darker {
}
    background-color: #b3a300 !important;
.inflection-table-lime tr.secondary > th,
}
.inflection-table-lime th.secondary,
 
.inflection-table tr.inflection-table-lime.secondary > th,
.inflection-table-lime.inflection-table-no-title table {
.inflection-table tr.inflection-table-lime > th.secondary,
    background-color: #f7ffe5;
.inflection-table tr.secondary > th.inflection-table-lime,
}
.inflection-table th.inflection-table-lime.secondary {
.inflection-table-lime tr.secondary > th,
  background-color: var(--wikt-palette-lime-1);
.inflection-table-lime th.secondary,
}
.inflection-table tr.inflection-table-lime.secondary > th,
.inflection-table-lime th,
.inflection-table tr.inflection-table-lime > th.secondary,
.inflection-table tr.inflection-table-lime > th,
.inflection-table tr.secondary > th.inflection-table-lime,
.inflection-table th.inflection-table-lime {
.inflection-table th.inflection-table-lime.secondary {
  background-color: var(--wikt-palette-lime-2);
    background-color: #edffb3;
}
}
.inflection-table-lime tr.outer > th,
.inflection-table-lime th,
.inflection-table-lime th.outer,
.inflection-table tr.inflection-table-lime > th,
.inflection-table tr.inflection-table-lime.outer > th,
.inflection-table th.inflection-table-lime {
.inflection-table tr.inflection-table-lime > th.outer,
    background-color: #d6ff66;
.inflection-table tr.outer > th.inflection-table-lime,
}
.inflection-table th.inflection-table-lime.outer {
.inflection-table-lime tr.outer > th,
  background-color: var(--wikt-palette-lime-4);
.inflection-table-lime th.outer,
}
.inflection-table tr.inflection-table-lime.outer > th,
.inflection-table-lime tr.darker > td,
.inflection-table tr.inflection-table-lime > th.outer,
.inflection-table-lime td.darker,
.inflection-table tr.outer > th.inflection-table-lime,
.inflection-table tr.inflection-table-lime.darker > td,
.inflection-table th.inflection-table-lime.outer {
.inflection-table tr.inflection-table-lime > td.darker,
    background-color: #aaff00;
.inflection-table tr.darker > td.inflection-table-lime,
}
.inflection-table td.inflection-table-lime.darker {
.inflection-table-lime tr.darker > td,
  background-color: var(--wikt-palette-grey-lime-1) !important;
.inflection-table-lime td.darker,
}
.inflection-table tr.inflection-table-lime.darker > td,
.inflection-table-green.inflection-table-no-title table {
.inflection-table tr.inflection-table-lime > td.darker,
  background-color: var(--wikt-palette-green-0);  /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table tr.darker > td.inflection-table-lime,
}
.inflection-table td.inflection-table-lime.darker {
.inflection-table-green tr.secondary > th,
    background-color: #7fa300 !important;
.inflection-table-green th.secondary,
}
.inflection-table tr.inflection-table-green.secondary > th,
 
.inflection-table tr.inflection-table-green > th.secondary,
.inflection-table-green.inflection-table-no-title table {
.inflection-table tr.secondary > th.inflection-table-green,
    background-color: #e5ffe5;
.inflection-table th.inflection-table-green.secondary {
}
  background-color: var(--wikt-palette-green-1);
.inflection-table-green tr.secondary > th,
}
.inflection-table-green th.secondary,
.inflection-table-green th,
.inflection-table tr.inflection-table-green.secondary > th,
.inflection-table tr.inflection-table-green > th,
.inflection-table tr.inflection-table-green > th.secondary,
.inflection-table th.inflection-table-green {
.inflection-table tr.secondary > th.inflection-table-green,
  background-color: var(--wikt-palette-green-2);
.inflection-table th.inflection-table-green.secondary {
}
    background-color: #ccffcc;
.inflection-table-green tr.outer > th,
}
.inflection-table-green th.outer,
.inflection-table-green th,
.inflection-table tr.inflection-table-green.outer > th,
.inflection-table tr.inflection-table-green > th,
.inflection-table tr.inflection-table-green > th.outer,
.inflection-table th.inflection-table-green {
.inflection-table tr.outer > th.inflection-table-green,
    background-color: #99ff99;
.inflection-table th.inflection-table-green.outer {
}
  background-color: var(--wikt-palette-green-4);
.inflection-table-green tr.outer > th,
}
.inflection-table-green th.outer,
.inflection-table-green tr.darker > td,
.inflection-table tr.inflection-table-green.outer > th,
.inflection-table-green td.darker,
.inflection-table tr.inflection-table-green > th.outer,
.inflection-table tr.inflection-table-green.darker > td,
.inflection-table tr.outer > th.inflection-table-green,
.inflection-table tr.inflection-table-green > td.darker,
.inflection-table th.inflection-table-green.outer {
.inflection-table tr.darker > td.inflection-table-green,
    background-color: #4dff4d;
.inflection-table td.inflection-table-green.darker {
}
  background-color: var(--wikt-palette-grey-green-1) !important;
.inflection-table-green tr.darker > td,
}
.inflection-table-green td.darker,
.inflection-table-teal.inflection-table-no-title table {
.inflection-table tr.inflection-table-green.darker > td,
  background-color: var(--wikt-palette-teal-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table tr.inflection-table-green > td.darker,
}
.inflection-table tr.darker > td.inflection-table-green,
.inflection-table-teal tr.secondary > th,
.inflection-table td.inflection-table-green.darker {
.inflection-table-teal th.secondary,
    background-color: #007f00 !important;
.inflection-table tr.inflection-table-teal.secondary > th,
}
.inflection-table tr.inflection-table-teal > th.secondary,
 
.inflection-table tr.secondary > th.inflection-table-teal,
/* --- Teal --- */
.inflection-table th.inflection-table-teal.secondary {
.inflection-table-teal.inflection-table-no-title table {
  background-color: var(--wikt-palette-teal-1);
    background-color: #e5f7f7;
}
}
.inflection-table-teal th,
.inflection-table-teal tr.secondary > th,
.inflection-table tr.inflection-table-teal > th,
.inflection-table-teal th.secondary,
.inflection-table th.inflection-table-teal {
.inflection-table tr.inflection-table-teal.secondary > th,
  background-color: var(--wikt-palette-teal-2);
.inflection-table tr.inflection-table-teal > th.secondary,
}
.inflection-table tr.secondary > th.inflection-table-teal,
.inflection-table-teal tr.outer > th,
.inflection-table th.inflection-table-teal.secondary {
.inflection-table-teal th.outer,
    background-color: #ccf0f0;
.inflection-table tr.inflection-table-teal.outer > th,
}
.inflection-table tr.inflection-table-teal > th.outer,
.inflection-table-teal th,
.inflection-table tr.outer > th.inflection-table-teal,
.inflection-table tr.inflection-table-teal > th,
.inflection-table th.inflection-table-teal.outer {
.inflection-table th.inflection-table-teal {
  background-color: var(--wikt-palette-teal-4);
    background-color: #99e6e6;
}
}
.inflection-table-teal tr.darker > td,
.inflection-table-teal tr.outer > th,
.inflection-table-teal td.darker,
.inflection-table-teal th.outer,
.inflection-table tr.inflection-table-teal.darker > td,
.inflection-table tr.inflection-table-teal.outer > th,
.inflection-table tr.inflection-table-teal > td.darker,
.inflection-table tr.inflection-table-teal > th.outer,
.inflection-table tr.darker > td.inflection-table-teal,
.inflection-table tr.outer > th.inflection-table-teal,
.inflection-table td.inflection-table-teal.darker {
.inflection-table th.inflection-table-teal.outer {
  background-color: var(--wikt-palette-grey-teal-1) !important;
    background-color: #33cccc;
}
}
.inflection-table-cyan.inflection-table-no-title table {
.inflection-table-teal tr.darker > td,
  background-color: var(--wikt-palette-cyan-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table-teal td.darker,
}
.inflection-table tr.inflection-table-teal.darker > td,
.inflection-table-cyan tr.secondary > th,
.inflection-table tr.inflection-table-teal > td.darker,
.inflection-table-cyan th.secondary,
.inflection-table tr.darker > td.inflection-table-teal,
.inflection-table tr.inflection-table-cyan.secondary > th,
.inflection-table td.inflection-table-teal.darker {
.inflection-table tr.inflection-table-cyan > th.secondary,
    background-color: #007f7f !important;
.inflection-table tr.secondary > th.inflection-table-cyan,
}
.inflection-table th.inflection-table-cyan.secondary {
 
  background-color: var(--wikt-palette-cyan-1);
/* --- Cyan --- */
}
.inflection-table-cyan.inflection-table-no-title table {
.inflection-table-cyan th,
    background-color: #e5f7ff;
.inflection-table tr.inflection-table-cyan > th,
}
.inflection-table th.inflection-table-cyan {
.inflection-table-cyan tr.secondary > th,
  background-color: var(--wikt-palette-cyan-2);
.inflection-table-cyan th.secondary,
}
.inflection-table tr.inflection-table-cyan.secondary > th,
.inflection-table-cyan tr.outer > th,
.inflection-table tr.inflection-table-cyan > th.secondary,
.inflection-table-cyan th.outer,
.inflection-table tr.secondary > th.inflection-table-cyan,
.inflection-table tr.inflection-table-cyan.outer > th,
.inflection-table th.inflection-table-cyan.secondary {
.inflection-table tr.inflection-table-cyan > th.outer,
    background-color: #ccf0ff;
.inflection-table tr.outer > th.inflection-table-cyan,
}
.inflection-table th.inflection-table-cyan.outer {
.inflection-table-cyan th,
  background-color: var(--wikt-palette-cyan-4);
.inflection-table tr.inflection-table-cyan > th,
}
.inflection-table th.inflection-table-cyan {
.inflection-table-cyan tr.darker > td,
    background-color: #99e6ff;
.inflection-table-cyan td.darker,
}
.inflection-table tr.inflection-table-cyan.darker > td,
.inflection-table-cyan tr.outer > th,
.inflection-table tr.inflection-table-cyan > td.darker,
.inflection-table-cyan th.outer,
.inflection-table tr.darker > td.inflection-table-cyan,
.inflection-table tr.inflection-table-cyan.outer > th,
.inflection-table td.inflection-table-cyan.darker {
.inflection-table tr.inflection-table-cyan > th.outer,
  background-color: var(--wikt-palette-grey-cyan-1) !important;
.inflection-table tr.outer > th.inflection-table-cyan,
}
.inflection-table th.inflection-table-cyan.outer {
.inflection-table-blue.inflection-table-no-title table {
    background-color: #33ccff;
  background-color: var(--wikt-palette-blue-0); /* when no title, provide a colour that gently contrasts with the page background */
}
}
.inflection-table-cyan tr.darker > td,
.inflection-table-blue tr.secondary > th,
.inflection-table-cyan td.darker,
.inflection-table-blue th.secondary,
.inflection-table tr.inflection-table-cyan.darker > td,
.inflection-table tr.inflection-table-blue.secondary > th,
.inflection-table tr.inflection-table-cyan > td.darker,
.inflection-table tr.inflection-table-blue > th.secondary,
.inflection-table tr.darker > td.inflection-table-cyan,
.inflection-table tr.secondary > th.inflection-table-blue,
.inflection-table td.inflection-table-cyan.darker {
.inflection-table th.inflection-table-blue.secondary {
    background-color: #007fb3 !important;
  background-color: var(--wikt-palette-blue-1);
}
}
 
.inflection-table-blue th,
/* --- Blue --- */
.inflection-table tr.inflection-table-blue > th,
.inflection-table-blue.inflection-table-no-title table {
.inflection-table th.inflection-table-blue {
    background-color: #e5eaff;
  background-color: var(--wikt-palette-blue-2);
}
}
.inflection-table-blue tr.secondary > th,
.inflection-table-blue tr.outer > th,
.inflection-table-blue th.secondary,
.inflection-table-blue th.outer,
.inflection-table tr.inflection-table-blue.secondary > th,
.inflection-table tr.inflection-table-blue.outer > th,
.inflection-table tr.inflection-table-blue > th.secondary,
.inflection-table tr.inflection-table-blue > th.outer,
.inflection-table tr.secondary > th.inflection-table-blue,
.inflection-table tr.outer > th.inflection-table-blue,
.inflection-table th.inflection-table-blue.secondary {
.inflection-table th.inflection-table-blue.outer {
    background-color: #cce0ff;
  background-color: var(--wikt-palette-blue-4);
}
}
.inflection-table-blue th,
.inflection-table-blue tr.darker > td,
.inflection-table tr.inflection-table-blue > th,
.inflection-table-blue td.darker,
.inflection-table th.inflection-table-blue {
.inflection-table tr.inflection-table-blue.darker > td,
    background-color: #99b3ff;
.inflection-table tr.inflection-table-blue > td.darker,
}
.inflection-table tr.darker > td.inflection-table-blue,
.inflection-table-blue tr.outer > th,
.inflection-table td.inflection-table-blue.darker {
.inflection-table-blue th.outer,
  background-color: var(--wikt-palette-grey-blue-1) !important;
.inflection-table tr.inflection-table-blue.outer > th,
}
.inflection-table tr.inflection-table-blue > th.outer,
.inflection-table-indigo.inflection-table-no-title table {
.inflection-table tr.outer > th.inflection-table-blue,
  background-color: var(--wikt-palette-indigo-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table th.inflection-table-blue.outer {
}
    background-color: #3366ff;
.inflection-table-indigo tr.secondary > th,
}
.inflection-table-indigo th.secondary,
.inflection-table-blue tr.darker > td,
.inflection-table tr.inflection-table-indigo.secondary > th,
.inflection-table-blue td.darker,
.inflection-table tr.inflection-table-indigo > th.secondary,
.inflection-table tr.inflection-table-blue.darker > td,
.inflection-table tr.secondary > th.inflection-table-indigo,
.inflection-table tr.inflection-table-blue > td.darker,
.inflection-table th.inflection-table-indigo.secondary {
.inflection-table tr.darker > td.inflection-table-blue,
  background-color: var(--wikt-palette-indigo-1);
.inflection-table td.inflection-table-blue.darker {
}
    background-color: #003fb3 !important;
.inflection-table-indigo th,
}
.inflection-table tr.inflection-table-indigo > th,
 
.inflection-table th.inflection-table-indigo {
/* --- Indigo --- */
  background-color: var(--wikt-palette-indigo-2);
.inflection-table-indigo.inflection-table-no-title table {
}
    background-color: #e5e5ff;
.inflection-table-indigo tr.outer > th,
}
.inflection-table-indigo th.outer,
.inflection-table-indigo tr.secondary > th,
.inflection-table tr.inflection-table-indigo.outer > th,
.inflection-table-indigo th.secondary,
.inflection-table tr.inflection-table-indigo > th.outer,
.inflection-table tr.inflection-table-indigo.secondary > th,
.inflection-table tr.outer > th.inflection-table-indigo,
.inflection-table tr.inflection-table-indigo > th.secondary,
.inflection-table th.inflection-table-indigo.outer {
.inflection-table tr.secondary > th.inflection-table-indigo,
  background-color: var(--wikt-palette-indigo-4);
.inflection-table th.inflection-table-indigo.secondary {
}
    background-color: #ccccff;
.inflection-table-indigo tr.darker > td,
}
.inflection-table-indigo td.darker,
.inflection-table-indigo th,
.inflection-table tr.inflection-table-indigo.darker > td,
.inflection-table tr.inflection-table-indigo > th,
.inflection-table tr.inflection-table-indigo > td.darker,
.inflection-table th.inflection-table-indigo {
.inflection-table tr.darker > td.inflection-table-indigo,
    background-color: #9999ff;
.inflection-table td.inflection-table-indigo.darker {
}
  background-color: var(--wikt-palette-grey-indigo-1) !important;
.inflection-table-indigo tr.outer > th,
}
.inflection-table-indigo th.outer,
.inflection-table-purple.inflection-table-no-title table {
.inflection-table tr.inflection-table-indigo.outer > th,
  background-color: var(--wikt-palette-purple-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table tr.inflection-table-indigo > th.outer,
}
.inflection-table tr.outer > th.inflection-table-indigo,
.inflection-table-purple tr.secondary > th,
.inflection-table th.inflection-table-indigo.outer {
.inflection-table-purple th.secondary,
    background-color: #4d4dff;
.inflection-table tr.inflection-table-purple.secondary > th,
}
.inflection-table tr.inflection-table-purple > th.secondary,
.inflection-table-indigo tr.darker > td,
.inflection-table tr.secondary > th.inflection-table-purple,
.inflection-table-indigo td.darker,
.inflection-table th.inflection-table-purple.secondary {
.inflection-table tr.inflection-table-indigo.darker > td,
  background-color: var(--wikt-palette-purple-1);
.inflection-table tr.inflection-table-indigo > td.darker,
}
.inflection-table tr.darker > td.inflection-table-indigo,
.inflection-table-purple th,
.inflection-table td.inflection-table-indigo.darker {
.inflection-table tr.inflection-table-purple > th,
    background-color: #00007f !important;
.inflection-table th.inflection-table-purple {
}
  background-color: var(--wikt-palette-purple-2);
 
}
/* --- Purple --- */
.inflection-table-purple tr.outer > th,
.inflection-table-purple.inflection-table-no-title table {
.inflection-table-purple th.outer,
    background-color: #f0e5ff;
.inflection-table tr.inflection-table-purple.outer > th,
}
.inflection-table tr.inflection-table-purple > th.outer,
.inflection-table-purple tr.secondary > th,
.inflection-table tr.outer > th.inflection-table-purple,
.inflection-table-purple th.secondary,
.inflection-table th.inflection-table-purple.outer {
.inflection-table tr.inflection-table-purple.secondary > th,
  background-color: var(--wikt-palette-purple-4);
.inflection-table tr.inflection-table-purple > th.secondary,
}
.inflection-table tr.secondary > th.inflection-table-purple,
.inflection-table-purple tr.darker > td,
.inflection-table th.inflection-table-purple.secondary {
.inflection-table-purple td.darker,
    background-color: #d9ccff;
.inflection-table tr.inflection-table-purple.darker > td,
}
.inflection-table tr.inflection-table-purple > td.darker,
.inflection-table-purple th,
.inflection-table tr.darker > td.inflection-table-purple,
.inflection-table tr.inflection-table-purple > th,
.inflection-table td.inflection-table-purple.darker {
.inflection-table th.inflection-table-purple {
  background-color: var(--wikt-palette-grey-purple-1) !important;
    background-color: #b399ff;
}
}
.inflection-table-magenta.inflection-table-no-title table {
.inflection-table-purple tr.outer > th,
  background-color: var(--wikt-palette-magenta-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table-purple th.outer,
}
.inflection-table tr.inflection-table-purple.outer > th,
.inflection-table-magenta tr.secondary > th,
.inflection-table tr.inflection-table-purple > th.outer,
.inflection-table-magenta th.secondary,
.inflection-table tr.outer > th.inflection-table-purple,
.inflection-table tr.inflection-table-magenta.secondary > th,
.inflection-table th.inflection-table-purple.outer {
.inflection-table tr.inflection-table-magenta > th.secondary,
    background-color: #8000ff;
.inflection-table tr.secondary > th.inflection-table-magenta,
}
.inflection-table th.inflection-table-magenta.secondary {
.inflection-table-purple tr.darker > td,
  background-color: var(--wikt-palette-magenta-1);
.inflection-table-purple td.darker,
}
.inflection-table tr.inflection-table-purple.darker > td,
.inflection-table-magenta th,
.inflection-table tr.inflection-table-purple > td.darker,
.inflection-table tr.inflection-table-magenta > th,
.inflection-table tr.darker > td.inflection-table-purple,
.inflection-table th.inflection-table-magenta {
.inflection-table td.inflection-table-purple.darker {
  background-color: var(--wikt-palette-magenta-2);
    background-color: #4d007f !important;
}
}
.inflection-table-magenta tr.outer > th,
 
.inflection-table-magenta th.outer,
/* --- Magenta --- */
.inflection-table tr.inflection-table-magenta.outer > th,
.inflection-table-magenta.inflection-table-no-title table {
.inflection-table tr.inflection-table-magenta > th.outer,
    background-color: #ffe5ff;
.inflection-table tr.outer > th.inflection-table-magenta,
}
.inflection-table th.inflection-table-magenta.outer {
.inflection-table-magenta tr.secondary > th,
  background-color: var(--wikt-palette-magenta-4);
.inflection-table-magenta th.secondary,
}
.inflection-table tr.inflection-table-magenta.secondary > th,
.inflection-table-magenta tr.darker > td,
.inflection-table tr.inflection-table-magenta > th.secondary,
.inflection-table-magenta td.darker,
.inflection-table tr.secondary > th.inflection-table-magenta,
.inflection-table tr.inflection-table-magenta.darker > td,
.inflection-table th.inflection-table-magenta.secondary {
.inflection-table tr.inflection-table-magenta > td.darker,
    background-color: #ffccff;
.inflection-table tr.darker > td.inflection-table-magenta,
}
.inflection-table td.inflection-table-magenta.darker {
.inflection-table-magenta th,
  background-color: var(--wikt-palette-grey-magenta-1) !important;
.inflection-table tr.inflection-table-magenta > th,
}
.inflection-table th.inflection-table-magenta {
.inflection-table-rose.inflection-table-no-title table {
    background-color: #ff99ff;
  background-color: var(--wikt-palette-rose-0); /* when no title, provide a colour that gently contrasts with the page background */
}
}
.inflection-table-magenta tr.outer > th,
.inflection-table-rose tr.secondary > th,
.inflection-table-magenta th.outer,
.inflection-table-rose th.secondary,
.inflection-table tr.inflection-table-magenta.outer > th,
.inflection-table tr.inflection-table-rose.secondary > th,
.inflection-table tr.inflection-table-magenta > th.outer,
.inflection-table tr.inflection-table-rose > th.secondary,
.inflection-table tr.outer > th.inflection-table-magenta,
.inflection-table tr.secondary > th.inflection-table-rose,
.inflection-table th.inflection-table-magenta.outer {
.inflection-table th.inflection-table-rose.secondary {
    background-color: #ff4dff;
  background-color: var(--wikt-palette-rose-1);
}
}
.inflection-table-magenta tr.darker > td,
.inflection-table-rose th,
.inflection-table-magenta td.darker,
.inflection-table tr.inflection-table-rose > th,
.inflection-table tr.inflection-table-magenta.darker > td,
.inflection-table th.inflection-table-rose {
.inflection-table tr.inflection-table-magenta > td.darker,
  background-color: var(--wikt-palette-rose-2);
.inflection-table tr.darker > td.inflection-table-magenta,
}
.inflection-table td.inflection-table-magenta.darker {
.inflection-table-rose tr.outer > th,
    background-color: #b3007f !important;
.inflection-table-rose th.outer,
}
.inflection-table tr.inflection-table-rose.outer > th,
 
.inflection-table tr.inflection-table-rose > th.outer,
/* --- Rose --- */
.inflection-table tr.outer > th.inflection-table-rose,
.inflection-table-rose.inflection-table-no-title table {
.inflection-table th.inflection-table-rose.outer {
    background-color: #ffe5f0;
  background-color: var(--wikt-palette-rose-4);
}
}
.inflection-table-rose tr.secondary > th,
.inflection-table-rose tr.darker > td,
.inflection-table-rose th.secondary,
.inflection-table-rose td.darker,
.inflection-table tr.inflection-table-rose.secondary > th,
.inflection-table tr.inflection-table-rose.darker > td,
.inflection-table tr.inflection-table-rose > th.secondary,
.inflection-table tr.inflection-table-rose > td.darker,
.inflection-table tr.secondary > th.inflection-table-rose,
.inflection-table tr.darker > td.inflection-table-rose,
.inflection-table th.inflection-table-rose.secondary {
.inflection-table td.inflection-table-rose.darker {
    background-color: #ffccdd;
  background-color: var(--wikt-palette-grey-rose-1) !important;
}
}
.inflection-table-rose th,
.inflection-table-grey.inflection-table-no-title table {
.inflection-table tr.inflection-table-rose > th,
  background-color: var(--wikt-palette-grey-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table th.inflection-table-rose {
}
    background-color: #ff99bb;
.inflection-table-grey tr.secondary > th,
}
.inflection-table-grey th.secondary,
.inflection-table-rose tr.outer > th,
.inflection-table tr.inflection-table-grey.secondary > th,
.inflection-table-rose th.outer,
.inflection-table tr.inflection-table-grey > th.secondary,
.inflection-table tr.inflection-table-rose.outer > th,
.inflection-table tr.secondary > th.inflection-table-grey,
.inflection-table tr.inflection-table-rose > th.outer,
.inflection-table th.inflection-table-grey.secondary {
.inflection-table tr.outer > th.inflection-table-rose,
  background-color: var(--wikt-palette-grey-1);
.inflection-table th.inflection-table-rose.outer {
}
    background-color: #ff3399;
.inflection-table-grey th,
}
.inflection-table tr.inflection-table-grey > th,
.inflection-table-rose tr.darker > td,
.inflection-table th.inflection-table-grey {
.inflection-table-rose td.darker,
  background-color: var(--wikt-palette-grey-2);
.inflection-table tr.inflection-table-rose.darker > td,
}
.inflection-table tr.inflection-table-rose > td.darker,
.inflection-table-grey tr.outer > th,
.inflection-table tr.darker > td.inflection-table-rose,
.inflection-table-grey th.outer,
.inflection-table td.inflection-table-rose.darker {
.inflection-table tr.inflection-table-grey.outer > th,
    background-color: #b30066 !important;
.inflection-table tr.inflection-table-grey > th.outer,
}
.inflection-table tr.outer > th.inflection-table-grey,
 
.inflection-table th.inflection-table-grey.outer {
/* --- Grey --- */
  background-color: var(--wikt-palette-grey-4);
.inflection-table-grey.inflection-table-no-title table {
}
    background-color: #f2f2f2;
.inflection-table-grey tr.darker > td,
}
.inflection-table-grey td.darker,
.inflection-table-grey tr.secondary > th,
.inflection-table tr.inflection-table-grey.darker > td,
.inflection-table-grey th.secondary,
.inflection-table tr.inflection-table-grey > td.darker,
.inflection-table tr.inflection-table-grey.secondary > th,
.inflection-table tr.darker > td.inflection-table-grey,
.inflection-table tr.inflection-table-grey > th.secondary,
.inflection-table td.inflection-table-grey.darker {
.inflection-table tr.secondary > th.inflection-table-grey,
  background-color: var(--wikt-palette-grey-grey-1) !important;
.inflection-table th.inflection-table-grey.secondary {
}
    background-color: #d9d9d9;
.inflection-table-brown.inflection-table-no-title table {
}
  background-color: var(--wikt-palette-brown-0); /* when no title, provide a colour that gently contrasts with the page background */
.inflection-table-grey th,
}
.inflection-table tr.inflection-table-grey > th,
.inflection-table-brown tr.secondary > th,
.inflection-table th.inflection-table-grey {
.inflection-table-brown th.secondary,
    background-color: #b3b3b3;
.inflection-table tr.inflection-table-brown.secondary > th,
}
.inflection-table tr.inflection-table-brown > th.secondary,
.inflection-table-grey tr.outer > th,
.inflection-table tr.secondary > th.inflection-table-brown,
.inflection-table-grey th.outer,
.inflection-table th.inflection-table-brown.secondary {
.inflection-table tr.inflection-table-grey.outer > th,
  background-color: var(--wikt-palette-brown-1);
.inflection-table tr.inflection-table-grey > th.outer,
}
.inflection-table tr.outer > th.inflection-table-grey,
.inflection-table-brown th,
.inflection-table th.inflection-table-grey.outer {
.inflection-table tr.inflection-table-brown > th,
    background-color: #666666;
.inflection-table th.inflection-table-brown {
}
  background-color: var(--wikt-palette-brown-2);
.inflection-table-grey tr.darker > td,
}
.inflection-table-grey td.darker,
.inflection-table-brown tr.outer > th,
.inflection-table tr.inflection-table-grey.darker > td,
.inflection-table-brown th.outer,
.inflection-table tr.inflection-table-grey > td.darker,
.inflection-table tr.inflection-table-brown.outer > th,
.inflection-table tr.darker > td.inflection-table-grey,
.inflection-table tr.inflection-table-brown > th.outer,
.inflection-table td.inflection-table-grey.darker {
.inflection-table tr.outer > th.inflection-table-brown,
    background-color: #333333 !important;
.inflection-table th.inflection-table-brown.outer {
}
  background-color: var(--wikt-palette-brown-4);
 
}
/* --- Brown --- */
.inflection-table-brown tr.darker > td,
.inflection-table-brown.inflection-table-no-title table {
.inflection-table-brown td.darker,
    background-color: #f2e5dd;
.inflection-table tr.inflection-table-brown.darker > td,
}
.inflection-table tr.inflection-table-brown > td.darker,
.inflection-table-brown tr.secondary > th,
.inflection-table tr.darker > td.inflection-table-brown,
.inflection-table-brown th.secondary,
.inflection-table td.inflection-table-brown.darker {
.inflection-table tr.inflection-table-brown.secondary > th,
  background-color: var(--wikt-palette-grey-brown-1) !important;
.inflection-table tr.inflection-table-brown > th.secondary,
}
.inflection-table tr.secondary > th.inflection-table-brown,
.inflection-table th.inflection-table-brown.secondary {
    background-color: #e6ccb3;
}
.inflection-table-brown th,
.inflection-table tr.inflection-table-brown > th,
.inflection-table th.inflection-table-brown {
    background-color: #cc9966;
}
.inflection-table-brown tr.outer > th,
.inflection-table-brown th.outer,
.inflection-table tr.inflection-table-brown.outer > th,
.inflection-table tr.inflection-table-brown > th.outer,
.inflection-table tr.outer > th.inflection-table-brown,
.inflection-table th.inflection-table-brown.outer {
    background-color: #804d1a;
}
.inflection-table-brown tr.darker > td,
.inflection-table-brown td.darker,
.inflection-table tr.inflection-table-brown.darker > td,
.inflection-table tr.inflection-table-brown > td.darker,
.inflection-table tr.darker > td.inflection-table-brown,
.inflection-table td.inflection-table-brown.darker {
    background-color: #4d2600 !important;
}

Navigation menu