Jump to content

User:Novem Linguae/global.css

From Meta, a Wikimedia project coordination wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Make visited links more purple. Easier to differentiate. */
a:link,
.mw-parser-output a.extiw,
.mw-parser-output a.external,
.vector-menu-portal .vector-menu-content li a {
    color: rgb(0, 0, 238);
}
a:visited,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited,
.vector-menu-portal .vector-menu-content li a:visited {
    color: #8002ad;
}

/* Give this higher specificity, so that uncreated pages show up as red instead of blue. */
a.new {
    color: #ba0000;
}

/* Sorry "beta" link, you're not as important as Watchlist and Contributions. */
#pt-betafeatures {
	display: none;
}

/* restore old diff colors */
.diff-deletedline {
  border-color: #FFE49C;
}
.diff-addedline {
  border-color: #A3D3FF;
}
.diff-deletedline .diffchange,
.mw-diff-inline-deleted del, .mw-diff-inline-changed del, .mw-diff-inline-moved del {
  background: #FEEEC8;
}
.diff-addedline .diffchange,
.mw-diff-inline-added ins, .mw-diff-inline-changed ins, .mw-diff-inline-moved ins {
  background: #D8ECFF;
}