mediawiki-extensions-AbuseF.../modules/ext.abuseFilter.css
MatmaRex 3d4d705b06 AbuseFilterViewDiff: Make diffs use standard styling (and more)
They still used old 1.18-style diffs, with styles copied from core.

Also:
* Remove the distinction between "simple" and "multiline" diff chunk,
  enabling consistent styling
* Always show word-level diff, even in previously "simple" chunks
* Ensure the full context is always shown. This was clearly intended
  (showing straight side-by-side comparison if there were no changes
  and in "simple" chunks, diff otherwise; showing chunks with no
  changes), but the default context is only 2 lines.
* Remove the distinction between 'wikitext' and 'text' diffs (all are
  treated like 'text' was); it's impossible to show parsed code with
  word-level diff, and it was only enabled for "simple" chunks, all of
  which are intended to be one-line strings and are shown unparsed
  elsewhere (e.g. filter description on the list on Special:AbuseFilter)

Bug: 36478
Change-Id: Ie24ad5ac5a9a2bc9b8f0fc0c4a03d5dfe7a6a83f
2013-06-29 23:43:45 +00:00

95 lines
1.9 KiB
CSS

/* This code was stolen shamelessly from enwikipedia's Common.css */
table.mw-abuselog-details {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
width: 100%;
table-layout: fixed;
}
table.mw-abuselog-details th, table.mw-abuselog-details td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.mw-abuselog-details th {
background: #f2f2f2;
text-align: center;
}
table.mw-abuselog-details caption {
font-weight: bold;
}
.mw-abusefilter-history-changed {
background: #ffe0e0;
font-weight: bold;
}
.mw-abuselog-var-value {
white-space: pre-wrap;
font-family: monospace;
}
div.mw-abuselog-var-value {
max-height: 10em;
max-width: 100%;
overflow: auto;
}
td.mw-abuselog-var {
width: 30%;
}
tr.mw-abusefilter-list-disabled, tr.mw-abusefilter-list-disabled td {
color: #666666;
}
tr.mw-abusefilter-list-deleted, tr.mw-abusefilter-list-deleted td {
color: #aaaaaa;
}
.mw-abusefilter-examine-match,
.mw-abusefilter-syntaxresult-ok,
li.mw-abusefilter-changeslist-match {
/* @embed */
background-image: url(yes_check.png);
}
.mw-abusefilter-examine-nomatch,
.mw-abusefilter-syntaxresult-error,
li.mw-abusefilter-changeslist-nomatch {
/* @embed */
background-image: url(red_x.png);
}
#mw-abusefilter-syntaxresult,
li.mw-abusefilter-changeslist-nomatch,
li.mw-abusefilter-changeslist-match {
/* Do not consolidate these into a "background:" rule; it will override the background-image: settings in above rulesets */
background-repeat: no-repeat;
padding-left: 25px;
background-position: left center;
}
/* Name is in site content language */
/* @noflip */
.sitedir-ltr .TablePager_col_af_public_comments {
direction: ltr;
}
/* @noflip */
.sitedir-rtl .TablePager_col_af_public_comments {
direction: rtl;
}
#mw-abusefilter-filter-tools {
display: inline;
}
.client-nojs #mw-abusefilter-export-link,
.client-js #mw-abusefilter-export {
display: none;
}