Jump to content

Wikipedia:AutoWikiBrowser/style.css

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Sun Creator (talk | contribs) at 00:14, 5 September 2012 (It's not the standard, the font is different for one.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

This is the format of the style.css file needs to be if you wish to use a custom css sheet for indicating and displaying diffs in AWB.

Create a file called "style.css" and put it in your AWB directory, you can then use the custom CSS.

For reference, the default MediaWiki diff CSS file is diff.css.

This is not the standard/default AWB style but is similar to it:

td{
	border: 1px solid white;
}

table.diff, td.diff-otitle, td.diff-ntitle {
	background-color: white;
	border: 1px solid gray;
}
td.diff-addedline {
	background: #cfc;
	font-size: smaller;
}
td.diff-deletedline {
	background: #ffa;
	font-size: smaller;
}
td.diff-context {
	background: #eee;
	font-size: smaller;
}
.diffchange {
	color: red;
	font-weight: bold;
	text-decoration: none;
}

td.diff-deletedline span.diffchange {
	background-color: #FFD754; color:black;
}

td.diff-addedline span.diffchange {
	background-color: #73E5A1; color:black;
}

.d{
	overflow: auto;
}