MediaWiki:Common.css: Difference between revisions

From Doppler Shift Wiki
Jump to navigation Jump to search
m tentatively trimming excess
m the one green thing that escaped
 
(4 intermediate revisions by the same user not shown)
Line 64: Line 64:
.vector-menu-tabs-legacy li a:visited {
.vector-menu-tabs-legacy li a:visited {
     color: #52BDF2;
     color: #52BDF2;
}
.vector-menu-tabs-legacy .new a, .vector-menu-tabs-legacy .new a:visited {
    color: #FF00AA;
}
}


Line 75: Line 79:


.toctogglelabel {
.toctogglelabel {
     color: #afe60b;
     color: #FF00FF;
}
}


Line 128: Line 132:
     color: #ffffff;
     color: #ffffff;
     border: 1pt solid #1A2433;
     border: 1pt solid #1A2433;
}
.toctext {
    color: #ff00aa;
}
}


.mw-footer li {
.mw-footer li {
     color: #ffffff;
     color: #ffffff;
}
.catlinks {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}
}



Latest revision as of 17:48, 27 September 2024

/* CSS placed here will be applied to all skins */
/* Credit to Naaka for letting us customise their common.css */

.tooltip {
    position: relative
}

.tooltiptext {
    position: absolute;
    display: block;
    z-index: 2;
    width: 250px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    white-space: normal;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid #aa99a4;
    background-color: #524359;
    color: #ffffff;
}

.tooltip:hover>.tooltiptext {
    visibility: visible;
    opacity: 1
}

/* links */

a {
    color: #AA00FF;
}

a:visited {
    color: #ff80D5;
}

/* inbuilt linter gets this wrong; .new is insufficient as a.new will explicitly override it */
a.new {
	color: #ff00aa;
}

.mw-parser-output a.extiw, .mw-parser-output a.external {
    color: #52BDF2;
}

.mw-parser-output a.extiw, .mw-parser-output a.external:visited {
    color: #52BDF2;
}

.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a {
    color: #AA00FF;
}

.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a:visited {
    color: #ff80D5;
}

.vector-menu-tabs-legacy li a {
    color: #52BDF2;
}

.vector-menu-tabs-legacy li a:visited {
    color: #52BDF2;
}

.vector-menu-tabs-legacy .new a, .vector-menu-tabs-legacy .new a:visited {
    color: #FF00AA;
}

.vector-menu-dropdown .mw-list-item a {
    color: #52BDF2;
}

.vector-menu-dropdown .mw-list-item a:visited {
    color: #52BDF2;
}

.toctogglelabel {
    color: #FF00FF;
}

.mw-collapsible-toggle-default .mw-collapsible-text {
    color: #52BDF2;
}

/* pretty tab gradients */

.vector-menu-tabs-legacy li {
    background-image: linear-gradient(to top, #8D31B0 0, #8D31B0 1px, #D982EF 100%);
}

.vector-menu-tabs-legacy .selected {
    background: #aaff00;
    background-image: linear-gradient(to top, #AA00FF 0, #AA00FF 1px, #ff80D5 100%);
}

.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading {
    background-image: linear-gradient(to bottom, #D982EF 0, #8D31B0 100%);
}

#mw-page-base {
    background-color: #1A2433;
    background-image: linear-gradient(to bottom, #111111 50%, #1A2433 100%);
}

/* page body tweaks */

.mw-body {
    border: 1px solid #8D31B0;
}

body {
    background-color: #1A2433;
    /*color: #ffffff;*/
}

.mw-body,.parsoid-body {
    background-color: #364759;
    color: #ffffff;
}

.toc {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

.toc, .toccolours {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

.toctext {
    color: #ff00aa;
}

.mw-footer li {
    color: #ffffff;
}

.catlinks {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

.vector-search-box-input {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

/* assorted page body gubbins */
.wikitable {
    background-color: #465C73;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

.wikitable > tr > th, .wikitable > * > tr > th {
    background-color: #8D31B0;
    color: #ffffff;
    border: 1pt solid #1A2433;
}

/* bordered fields bc they're pain */
.fieldset {
    border: 1pt solid #AA00FF;
}

/* trying to get thumbnails to have the wikitable treatment */
.mw-default-size {
    background-color: #8D31B0 !important;
    border: 1pt solid #1A2433 !important;
    color: #000000 !important;
}

figure {
    background-color: #8D31B0 !important;
    border: 1pt solid #1A2433 !important;
    color: #000000 !important;
}

figcaption {
    background-color: #8D31B0 !important;
    border: 1pt solid #1A2433 !important;
    color: #000000 !important;
}

/* Should fix the specials page */
.mw-changeslist-legend {
	color: #000000;	
}
.mw-specialpages-notes {
	color: #000000;
}