Will someone change FandomDesktop text font to arial, sans-serif? Blazerun19 (talk) 14:19, 17 June 2021 (UTC)
- I don't know but the current font looks nice. It's easy to read it since it's big and I like it. Thejoaqui777 (talk) 14:39, 17 June 2021 (UTC)
- No it doesn't. I prefer that it uses the familiar arial font, like in Hydra. Blazerun19 (talk) 23:56, 17 June 2021 (UTC)
- It may be unfamiliar, but as both an editor and reader the font is ok, at least for me. Anyway, changes not always are bad, and readers will get a good experience seeing articles because the letters won't be so small. I can say as an user who started on Gamepedia that I like the new font, and actually I wanted it to be updated for a long time. Thejoaqui777 (talk) 00:02, 18 June 2021 (UTC)
- No it doesn't. I prefer that it uses the familiar arial font, like in Hydra. Blazerun19 (talk) 23:56, 17 June 2021 (UTC)
Highlighted ref is not readable in dark mode
Screenshot to demonstrate the issue: [1]. For the highlighted ref, the text color is defined via theme variable:
.page {
color:var(--theme-page-text-color);
[...]
}
... which is good. The background color is hard coded:
ol.references li:target,
sup.reference:target,
span.citation:target {
background-color:#C1DAF2
}
... which is not so good. Disabling background-color:#C1DAF2 makes background color fallback to the default CSS:
ol.references li:target, sup.reference:target {
background-color: rgba(var(--theme-link-color--rgb),.2);
}
... which gives good contrast: [2]. I think it might be better to remove the custom rule for background-color:#C1DAF2 or replace it with a different highlight, e.g. a border or underline. —andrybak (talk) 23:45, 23 December 2021 (UTC)
- Hmm, I double checked and I can't actually find out where
background-color:#C1DAF2is coming from. I just assumed that it was MediaWiki:Fandomdesktop.css or another CSS page in the MediaWiki namespace, because I was crossreferencing this behavior with two other wikis, which just have the rule withbackground-color: rgba(var(--theme-link-color--rgb),.2);. —andrybak (talk) 00:10, 24 December 2021 (UTC)