forked from cadence/breezewiki
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:
parent
a9acfc34a2
commit
82978e7c13
1 changed files with 12 additions and 14 deletions
|
@ -26,6 +26,9 @@ sup {
|
||||||
sub {
|
sub {
|
||||||
vertical-align: 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 */
|
/* general page appearance */
|
||||||
body.skin-fandomdesktop, button, input, textarea, .wikitable, .va-table {
|
body.skin-fandomdesktop, button, input, textarea, .wikitable, .va-table {
|
||||||
|
@ -58,6 +61,15 @@ p {
|
||||||
margin-top: 0;
|
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 with source and license info */
|
||||||
.custom-footer {
|
.custom-footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
|
@ -132,20 +144,6 @@ img {
|
||||||
overflow: auto;
|
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 */
|
/* float right. reorganised from their sheet */
|
||||||
.tright {
|
.tright {
|
||||||
clear: right;
|
clear: right;
|
||||||
|
|
Loading…
Reference in a new issue