Darkvector.css – MediaWiki

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix var & tt styles)
m (Add .code-comment fix)
Line 23: Line 23:
background-color: #333;
background-color: #333;
color: inherit; /* white from messagebox icon */
color: inherit; /* white from messagebox icon */
}
.code-comment {
color: lightgreen;
}
}



Revision as of 18:29, 14 March 2022

/* CSS placed here will affect users of the DarkVector skin */

.gvi2 .version {
	color: #000;
}

._description h3 {
	background-color: transparent !important;;
	border-left-width: 0.5em;
	border-left-style: solid;
	padding-left: 1em;
}

dl.command_description dd.note {
	background-color: #333;
}

._description dl.syntax dd:nth-child(4n+6) {
	background-color: rgba(0, 0, 0, 0.2);
}

.messagebox > div:nth-child(2) {
	background-color: #333;
	color: inherit; /* white from messagebox icon */
}

.code-comment {
	color: lightgreen;
}

code,
pre {
	background-color: rgba(255, 255, 255, 0.2);
}

var, tt {
  background-color: #558;
}