MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus dem IServ-Wiki
Zur Navigation springen Zur Suche springen
K (eigene border-angaben für filepre und cmdpre, da innerhalb das pre ohne format benutzt wird!)
(farbe der links in filepre repariert, Format des Hilfe-Links im oben rechts pre-Element)
Zeile 76: Zeile 76:
 
}
 
}
 
/* Linkfarben anpassen */
 
/* Linkfarben anpassen */
.filepre a:link { color:#80ff80; }
+
.filepre a:link { color:#8080ff; }
.filepre a:visited { color:#80ff80; }
+
.filepre a:visited { color:#8080ff; }
.filepre a:hover { color:#70ff70; }
+
.filepre a:hover { color:#7070ff; }
  
 
/* für die o. g. Vorlagen wird ein pre-Element ohne Formatierungen benötigt */
 
/* für die o. g. Vorlagen wird ein pre-Element ohne Formatierungen benötigt */
Zeile 86: Zeile 86:
 
background-color: transparent;
 
background-color: transparent;
 
padding: 0;
 
padding: 0;
 +
}
 +
 +
/* Format des Hilfe-Links im oben rechts pre-Element
 +
  Achtung: die Farbe des Links wird über a:link, a:hover und a:active bestimmt! */
 +
.prehelp {
 +
display: inline;
 +
font-family: "Arial Black", "Arial", "Helvetica";
 +
font-size: 200%;
 +
font-weight: bold;
 +
line-height: .8em;
 +
position: absolute;
 +
right: 0;
 
}
 
}
  

Version vom 13. Januar 2007, 16:04 Uhr

/*
<!-- nur für die Darstellung innerhalb des MediaWikis; bei der Verarbeitung als CSS-Datei werden die Tags ignoriert. -->
<!-- Tipp: Tabs per Copy and Paste einfügen. -->
<pre>
*/

/* Hauptseite */
@import "/w/index.php?title=MediaWiki:Common.css:hauptseite&usemsgcache=yes&action=raw&ctype=text/css&smaxage=18000";
/* Portalseite */
@import "/w/index.php?title=MediaWiki:Common.css:portalseite&usemsgcache=yes&action=raw&ctype=text/css&smaxage=18000";
/* Infoboxen */
@import "/w/index.php?title=MediaWiki:Common.css:infoboxen&usemsgcache=yes&action=raw&ctype=text/css&smaxage=18000";


/* Tabellen */

table.wikitable, table.prettytable {
	margin: 1em 1em 1em 0;
	background: #f9f9f9;
	border: 1px #aaaaaa solid;
	border-collapse: collapse;
}

table.wikitable th, table.wikitable td, table.prettytable th, table.prettytable td {
	border: 1px solid #8cacbb;
	padding: 0.2em;
	vertical-align: top;
}

table.wikitable th, table.prettytable th {
	background: #dee7ec;
	text-align: left;
}

table.wikitable caption, table.prettytable caption {
	margin-left: inherit;
	margin-right: inherit;
}

/* Bearbeiten-Links an Überschriften */
div.editsection {
	font-size: smaller;
	float: right;
}

/* für [[Vorlage:Cmdpre]]: pre für Eingaben auf der Kommandozeile */
.cmdpre {
	background-color: #f9e3e3;
	border: 1px dashed #2f6fab;
	padding: 0 1em;
	position: relative;
}
/* Linkfarben anpassen */
.cmdpre a:link { color:#ff8080; }
.cmdpre a:visited { color:#ff8080; }
.cmdpre a:hover { color:#ff7070; }

/* für [[Vorlage:Rootpre]]: pre für Eingaben auf der Kommandozeile, für die man root-Rechte braucht */
.rootpre {
	background-color: #f9e3e3;
	border: 1px dotted red;
	padding: 0 1em;
	position: relative;
}
/* Linkfarben anpassen */
.rootpre a:link { color:#ff8080; }
.rootpre a:visited { color:#ff8080; }
.rootpre a:hover { color:#ff7070; }

/* für [[Vorlage:Filepre]]: pre für Dateiinhalte etc. */
.filepre {
	border: 1px dashed #2f6fab;
	background-color: #e3e6f9;
	padding: 0 1em;
	position: relative;
}
/* Linkfarben anpassen */
.filepre a:link { color:#8080ff; }
.filepre a:visited { color:#8080ff; }
.filepre a:hover { color:#7070ff; }

/* für die o. g. Vorlagen wird ein pre-Element ohne Formatierungen benötigt */
pre.none {
	border-width: 0;
	color: black;
	background-color: transparent;
	padding: 0;
}

/* Format des Hilfe-Links im oben rechts pre-Element
   Achtung: die Farbe des Links wird über a:link, a:hover und a:active bestimmt! */
.prehelp {
	display: inline;
	font-family: "Arial Black", "Arial", "Helvetica";
	font-size: 200%;
	font-weight: bold;
	line-height: .8em;
	position: absolute;
	right: 0;
}

/* pre-Stil für Bereiche, die wie ein pre hervorgehoben werden sollen, aber formatierten Wikitext enthalten */
.prestyle {
	border: 1px dashed #2f6fab;
	color: black;
	background-color: #f9f9f9;
	padding: 1em;
}

/* </pre> */