User:Iritscen/vector.css: Difference between revisions

From OniGalore
Jump to navigation Jump to search
(looks like I was judging link color from the side panel, but that's mw-panel)
m (wait, this *does* work? +cat test)
 
(28 intermediate revisions by the same user not shown)
Line 2: Line 2:
pre
pre
{
{
  overflow: auto;
  overflow: auto;
  max-height: 25em;
  max-height: 25em;
}
}


/* Make visited links same color as unvisited (#0645AD is the Wikipedia standard link color) */
/* Make font in editor an actually-readable size */
.mw-body, .mw-panel a:link {color:#0645AD;} /* normal unvisited links */
.mw-editfont-default
.mw-body, .mw-panel a:link:visited {color:#0645AD;} /* visited links */
{
.mw-body, .mw-panel a:link:active {color:#0645AD;} /* active links */
  font-size: 13px !important;
.mw-body, .mw-panel a:link.new {color:#FF0000;} /* preserve color of red links */
}
.mw-body, .mw-panel a:link.interwiki {color:#0645AD;} /* interwiki links */
 
.mw-body, .mw-panel a:link.external {color:#0645AD;} /* external links */
/* Make visited links same color as unvisited (standard Wikipedia color is #0645AD) */
.mw-body, .mw-panel a:link.stub {color:#0645AD;} /* hovered links */
.mw-body a {color:#36B} /* base link color */
.mw-body a:visited {color:#36B} /* make visited same as base color */
.mw-body a.new {color:#FF0000} /* preserve color of red links */
.mw-body a.new:visited {color:#FF0000} /* preserve color of red links */
.mw-body a.external {color:#36B} /* external */
.mw-body a.extiw {color:#36B} /* inter-wiki */
.mw-body a.external:visited {color:#36B} /* external */
.mw-body a.extiw:visited {color:#36B} /* inter-wiki */
div#mw-panel div.portal div.body ul li a:visited {color:#36B} /* make visited same as base color */
div#mw-head a:visited {color:#36B} /* make visited same as base color */
div#footer a:visited {color:#36B} /* make visited same as base color */


.mw-body, .mw-panel a:link {color:#0645AD}
/*[[Category:Userspace]]*/
.mw-body, .mw-panel a:visited {color:#0645AD}
.mw-body, .mw-panel a:hover {color:#0645AD}
.mw-body, .mw-panel a:active {color:#0645AD}

Latest revision as of 15:11, 8 April 2023

/* Prevent sidewards scrolling in pre elements */
pre
{
   overflow: auto;
   max-height: 25em;
}

/* Make font in editor an actually-readable size */
.mw-editfont-default
{
   font-size: 13px !important;
}

/* Make visited links same color as unvisited (standard Wikipedia color is #0645AD) */
.mw-body a {color:#36B} /* base link color */
.mw-body a:visited {color:#36B} /* make visited same as base color */
.mw-body a.new {color:#FF0000} /* preserve color of red links */
.mw-body a.new:visited {color:#FF0000} /* preserve color of red links */
.mw-body a.external {color:#36B} /* external */
.mw-body a.extiw {color:#36B} /* inter-wiki */
.mw-body a.external:visited {color:#36B} /* external */
.mw-body a.extiw:visited {color:#36B} /* inter-wiki */
div#mw-panel div.portal div.body ul li a:visited {color:#36B} /* make visited same as base color */
div#mw-head a:visited {color:#36B} /* make visited same as base color */
div#footer a:visited {color:#36B} /* make visited same as base color */

/*[[Category:Userspace]]*/