Remove table colour override

This is no longer necessary because the table colours are okay because
the page theme is now correctly set.
This commit is contained in:
Cadence Ember 2022-09-17 22:34:34 +12:00
parent a9acfc34a2
commit 82978e7c13
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17
1 changed files with 12 additions and 14 deletions

View File

@ -26,6 +26,9 @@ sup {
sub {
vertical-align: sub;
}
.page table {
color: var(--theme-page-text-color); /* no idea why this needs to be specified, it should inherit from .page */
}
/* general page appearance */
body.skin-fandomdesktop, button, input, textarea, .wikitable, .va-table {
@ -58,6 +61,15 @@ p {
margin-top: 0;
}
/* home page search form */
.paired__label {
display: grid;
}
.paired__input {
width: auto;
max-width: 240px;
}
/* custom footer with source and license info */
.custom-footer {
clear: both;
@ -132,20 +144,6 @@ img {
overflow: auto;
}
/* table overrides for dark theme pages */
/* these colours look good in all wikis I tried. colours that don't look good:
--theme-page-background-color--secondary is bad for fallout
--theme-page-accent-mix-color is bad for minecraft */
.wikitable > tr > th, .wikitable > * > tr > th, .va-table th {
background-color: var(--theme-page-dynamic-color-1--inverted);
}
.wikitable td, .va-table td {
background-color: var(--theme-page-text-mix-color-95);
}
.page table {
color: var(--theme-page-text-color); /* no idea why this needs to be specified, it should inherit from .page */
}
/* float right. reorganised from their sheet */
.tright {
clear: right;