Changes

172 bytes removed ,  15:35, 1 September 2025
no edit summary
Line 1,189: Line 1,189:  
}
 
}
   −
/* Normalize 'new' (missing) links so they look like regular links (Chrome-safe) KS Mod */
+
 
 +
 
 +
 
 +
/* KS Mod: Make missing-page links look like plain black text */
 
.mw-parser-output a.new:link,
 
.mw-parser-output a.new:link,
 
.mw-parser-output a.new:visited,
 
.mw-parser-output a.new:visited,
 
.mw-parser-output a.new:hover,
 
.mw-parser-output a.new:hover,
 
.mw-parser-output a.new:active {
 
.mw-parser-output a.new:active {
   color: var(--color-link, #36c) !important;
+
   color: #000 !important;         /* black */
   text-decoration: underline;
+
   text-decoration: none !important;
}
+
  cursor: text;                  /* makes it feel like text, not a link */
 
  −
/* Optional: if you want a different visited color like normal links KS Mod */
  −
.skin-vector .mw-parser-output a.new:visited,
  −
.skin-minerva .mw-parser-output a.new:visited {
  −
  color: var(--color-link-visited, #6b4ba1) !important;
   
}
 
}