A fix for visited links not changing color on Natomanga.com when using the dark mode.
Visited link color on Natomanga dark mode by genma
Details
Authorgenma
LicenseNo License
CategoryNatomanga
Created
Updated
Size619 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Visited link color on Natomanga dark mode
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A fix for visited links not changing color on Natomanga.com when using the dark mode.
@author genma
==/UserStyle== */
@-moz-document domain("natomanga.com") {
/* Change color of links when hovered */
a[href*='natomanga.com']:hover {
color: #D15A00 !important;
}
/* Change color of links when visited */
a[href*='natomanga.com']:visited {
color: #D15A00 !important;
}
}