MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus crazylinux.de
Zur Navigation springen Zur Suche springen
K (ff)
K (ff)
Zeile 2: Zeile 2:
/* Reinstating borders */
/* Reinstating borders */
   
   
div.mw-geshi {
div.mw-highlight {
padding: 5px;
padding: 5px;
border: 1px dashed #2f6fab;
border: 1px dashed #2f6fab;
Zeile 15: Zeile 15:
/* Fix so <source> tags, and .css and .js pages, get normal text size  
/* Fix so <source> tags, and .css and .js pages, get normal text size  
   also in some versions of Firefox, Safari, Konqueror, Chrome etc. */
   also in some versions of Firefox, Safari, Konqueror, Chrome etc. */
div.mw-geshi div,pre {
div.mw-highlight div,pre {
font-family: monospace, "Courier New" !important;
font-family: monospace, "Courier New" !important;
}
}

Version vom 18. November 2017, 00:27 Uhr

 1 /* CSS in dieser MediaWiki-Systemnachricht wird auf die GeSHi-Syntaxhervorhebung angewendet */
 2 /* Reinstating borders */
 3  
 4 div.mw-highlight {
 5 	padding: 5px;
 6 	border: 1px dashed #2f6fab;
 7 	color: black;
 8 	background-color: #f9f9f9;
 9 	line-height: 1.1em;
10 	border-radius: 6px 6px 6px 6px;
11 
12 
13 }
14  
15 /* Fix so <source> tags, and .css and .js pages, get normal text size 
16    also in some versions of Firefox, Safari, Konqueror, Chrome etc. */
17 div.mw-highlight div,pre {
18 	font-family: monospace, "Courier New" !important;
19 }