mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-14 09:44:44 +00:00
7cbfa0597a
* Adopt pretty logos for "Match" and "No Match" for visual distinguishment. * Allow negatives to be reported as well in 'test' interface.
72 lines
1.4 KiB
CSS
72 lines
1.4 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: 80%;
|
|
}
|
|
|
|
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 {
|
|
background-image: url(yes_check.png);
|
|
}
|
|
|
|
.mw-abusefilter-examine-nomatch,
|
|
.mw-abusefilter-examine-syntaxerror,
|
|
.mw-abusefilter-syntaxresult-error,
|
|
li.mw-abusefilter-changeslist-nomatch {
|
|
background-image: url(red_x.png);
|
|
}
|
|
|
|
#mw-abusefilter-syntaxresult,
|
|
li.mw-abusefilter-changeslist-nomatch,
|
|
li.mw-abusefilter-changeslist-match {
|
|
background-repeat: no-repeat;
|
|
padding-left: 25px;
|
|
background-position: left center;
|
|
}
|