MediaWiki:Gadget-colorRC.css

From [N8]
Jump to navigation Jump to search

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.
/**
* Color certain namespaces in RecentChanges
* @todo: add something to distinguish watched pages (since this already bolds by default)
*
* This gadget is enabled for mobile too, so ensure that all CSS styling done here makes
* sense for those viewing the wiki from a mobile device.
*/

.mw-changeslist-title[href^="/Template:"]:not(.new),
.mw-changeslist-title[href^="/Forum:"]:not(.new),
.mw-changeslist-title[href^="/MediaWiki:"]:not(.new),
.mw-changeslist-title[href^="/GeminiStation:"]:not(.new),
.mw-changeslist-title[href^="/File:"]:not(.new),
.mw-changeslist-title[href^="/Module:"]:not(.new),
.mw-changeslist-title[href^="/Talk:"]:not(.new),
.mw-changeslist-title[href^="/Template_talk:"]:not(.new) {
    font-weight: bold;
    padding: 1px 4px;
    margin-left: -4px;
    border-radius: 3px;
}

/* red */
.mw-changeslist-title[href^="/Template:"]:not(.new),
.mw-changeslist-title[href^="/Module:"]:not(.new) {
    background: #ffe5e4;
    color: #b4312d;
}

/* orange */
.mw-changeslist-title[href^="/Forum:"]:not(.new),
.mw-changeslist-title[href^="/Talk:"]:not(.new),
.mw-changeslist-title[href^="/Template_talk:"]:not(.new) {
    background: #ffecd9;
    color: #d47300;
}

/* green */
.mw-changeslist-title[href^="/MediaWiki:"]:not(.new) {
    background: #ecfbe0;
    color: #619335;
}

/* blue */
.mw-changeslist-title[href^="/GeminiStation:"]:not(.new) {
    background: #ebf3f6;
}

/* purple */
.mw-changeslist-title[href^="/File:"]:not(.new) {
    background: #f0eafa;
    color: #766698;
}

/* DARK MODE
   just inverting background/text colors for now */

body.wgl-darkmode .mw-changeslist-title[href^="/Template:"]:not(.new),
body.wgl-darkmode .mw-changeslist-title[href^="/Module:"]:not(.new) {
    background: #b4312d;
    color: #ffe5e4;
}

body.wgl-darkmode .mw-changeslist-title[href^="/Forum:"]:not(.new),
body.wgl-darkmode .mw-changeslist-title[href^="/Talk:"]:not(.new),
body.wgl-darkmode .mw-changeslist-title[href^="/Template_talk:"]:not(.new) {
    background: #d47300;
    color: #ffecd9;
}

body.wgl-darkmode .mw-changeslist-title[href^="/MediaWiki:"]:not(.new) {
    background: #619335;
    color: #ecfbe0;
}

body.wgl-darkmode .mw-changeslist-title[href^="/GeminiStation:"]:not(.new) {
    background: #438ab5;
    color: #ebf3f6;
}

body.wgl-darkmode .mw-changeslist-title[href^="/File:"]:not(.new) {
    background: #766698;
    color: #f0eafa;
}