posimagi / bg-wiki-dark-mode

Issue tracker for Dark Mode on bg-wiki.com
1 stars 0 forks source link

Fix weapon list on weapon category pages #31

Closed posimagi closed 1 year ago

posimagi commented 1 year ago

Wikitext changes (needs to be done on all pages after CSS propagation):

Light mode current appearance: image

Light mode CSS:

table.weaponlist {
    background: #799bfb;
}
table.weaponlist th {
    background: #b7cbfe;
}
table.weaponlist tr {
    background: #e3eafd;
}
table.weaponlist tr td:first-child() {
    background: #ccccff;
}

Light mode result: image

Dark mode current appearance: image

Dark mode CSS:

table.weaponlist {
    background: #042786;
}
table.weaponlist th {
    background: #011546;
}
table.weaponlist tr {
    background: #02091d;
}
table.weaponlist tr td:first-child() {
    background: #000033;
}

Dark mode result: image

posimagi commented 1 year ago

Wikitext to-do:

posimagi commented 1 year ago

Done, courtesy of Funkworkz.