Jump to content

User:Aude/vector.css

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* hide rollback from Watchlist */
.page-Special_Watchlist .mw-rollback-link,
.mw-revdelundel-link {
  display:none;
}

span.has_been_on_main_page{ font-weight: bold; }

a.stub, 
a:visited.stub, 
a:active.stub {
  color:#953DCC;
}

a:hover.stub {
  color:#953DCC;
}

a.mw-redirect, 
a:visited.mw-redirect, 
a:active.mw-redirect {
  color:#3D9949;
}

a:hover.mw-redirect {
  color:#2EE748;
}

a.new, a:visited.new, a:active.new {
  color:#C24A4A;
}

a:hover.new {
  color:#E52E2E;
}

/*
** Diff rendering
*/
table.diff,
td.diff-context,
td.diff-otitle,
td.diff-ntitle {
	background-color: transparent;
}

td.diff-otitle,
td.diff-ntitle {
	text-align: center;
}

td.diff-marker {
	text-align: right;
}

td.diff-lineno {
	font-weight: bold;
}

td.diff-addedline {
	background: #e0ecff;
}

td.diff-deletedline {
	background: #ffffaa;
}

td.diff-context {
	background: #EEE;
}

.diffchange {
	font-weight: bold;
	white-space: -moz-pre-wrap;
	white-space: pre-wrap;
	text-decoration: none;
}

td.diff-addedline .diffchange {
	background: #c4d3ff;
	color: #222222;
	font-weight: bold;
}

td.diff-deletedline .diffchange {
	background: #ffd89d;
	color: #000000;
	font-weight: bold;
}

table.diff {
	border: none;
	width: 98%;
	border-spacing: 4px;

	/* Ensure that colums are of equal width */
	table-layout: fixed;
}

table.diff td {
	padding: 0;
}

table.diff col.diff-marker {
	width: 2%;
}

table.diff col.diff-content {
	width: 48%;
}

table.diff td div {
	/* Force-wrap very long lines such as URLs or page-widening char strings.*/
	word-wrap: break-word;

	/* As fallback (FF<3.5, Opera <10.5), scrollbars will be added for very wide cells
	 * instead of text overflowing or widening
	 */
	overflow: auto;
}