MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Stratum 0
Wechseln zu:Navigation, Suche
(überlange pre's mit Scrollbalken)
("scroll" macht alles mit Scrollbars, "auto" ist besser.)
Zeile 35: Zeile 35:
  
 
pre {
 
pre {
overflow: scroll;
+
overflow: auto;
 
}
 
}

Version vom 15. Oktober 2012, 05:32 Uhr

/* CSS an dieser Stelle wirkt sich auf alle Skins aus */

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

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

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

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

/** siehe zB http://weblogtoolscollection.com/archives/2007/06/16/css-for-code-wrap-long-lines/ */
pre.wrap {
	white-space: pre-wrap; /* css-3 */
	white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
}

pre {
	overflow: auto;
}