when clicking on a title of a blog, itwould be beneficial if it would change color to show that it isvisited, when visiting your blog I and possibly othershave a hard time remembering what we already read.
I made a similar request to drew devault for his blog and he implemented it (so maybe you can share some code or something).
--
Sent with Tutanota, the secure & ad-free mailbox:
https://tutanota.com
Tried applying a different background-color when visisted, but doesn't
seem to work:
a:visited {
background-color: red;
}
Feel free to send a patch if you manage to make it work.
No idea why backup color does not work, but using "color" does seem to work (which is also how i think it's implemented in most sites:
a:visited {
color: red;
}
You can of course use some other color that fits your taste.
I tried to send you a modified html but it got blocked. I also don't see where do i have to change the line on https://github.com/emersion/emersion.fr to add this.
--
Sent with Tutanota, the secure & ad-free mailbox:
https://tutanota.com
Feb 22, 2021, 15:59 by contact@emersion.fr:
> Tried applying a different background-color when visisted, but doesn't> seem to work:>> a:visited {> background-color: red;> }>> Feel free to send a patch if you manage to make it work.>
Yeah, I wanted to do experiment something with background-color or
opacity. Apparently opacity won't work, and background-color only works
if the non-visited version has a non-transparent background-color. Oh
well.
I'll see if I can come up with something not ugly.