Content deleted Content added
attempt to fix dark mode color in iOS dark mode; see talk Tag: Reverted |
No edit summary |
||
(9 intermediate revisions by the same user not shown) | |||
Line 62:
.video-game-reviews th {
background: var(--background-color-neutral, #eaecf0);
color: #333;
}
.vgr-awards td {
background: #f2f2f2;
color: #333;
}
Line 120 ⟶ 125:
.video-game-reviews caption {
display: table-caption; /* Minerva is still silly */
}
}
/* Dark mode fixes */
@media screen {
html.skin-theme-clientpref-night .video-game-reviews caption,
html.skin-theme-clientpref-night .vgr-edit-on-wikidata {
background: #3b3e44;
}
html.skin-theme-clientpref-night .vgr-edit-on-wikidata,
html.skin-theme-clientpref-night .video-game-reviews caption,
html.skin-theme-clientpref-night .video-game-reviews,
html.skin-theme-clientpref-night .vgr-awards td,
html.skin-theme-clientpref-night .vgr-hrow th,
html.skin-theme-clientpref-night .video-game-reviews th {
color: #d6d9dc;
}
html.skin-theme-clientpref-night .vgr-hrow th {
background: #1b223d;
}
html.skin-theme-clientpref-night .vgr-awards td {
background: #252627;
}
}
@media screen and ( prefers-color-scheme: dark ) {
html.skin-theme-clientpref-os .video-game-reviews caption,
html.skin-theme-clientpref-os .vgr-edit-on-wikidata {
background: #3b3e44;
}
html.skin-theme-clientpref-os .vgr-edit-on-wikidata,
html.skin-theme-clientpref-os .video-game-reviews caption,
html.skin-theme-clientpref-os .video-game-reviews,
html.skin-theme-clientpref-os .vgr-awards td,
html.skin-theme-clientpref-os .vgr-hrow th,
html.skin-theme-clientpref-os .video-game-reviews th {
color: #d6d9dc;
}
html.skin-theme-clientpref-os .vgr-hrow th {
background: #1b223d;
}
html.skin-theme-clientpref-os .vgr-awards td {
background: #252627;
}
}
|