Wikipedia:AutoWikiBrowser/style.css

From Wikipedia, the free encyclopedia

AutoWikiBrowser - 4.3.2.0

v  d  e
Home

General information about AutoWikiBrowser and directions for installation.

Request approval

Request approval to be added to the CheckPage to use AutoWikiBrowser.

Discussion

Discuss the application and ask questions.

Bugs

Report bugs in the application.

Feature Requests

Request new features to be implemented into AWB

User manual

The full user manual.

Developer Talk Page · Typos · IW Order · User talk templates · Plugins · IRCMonitor · Projects which have used AWB · Changelog · AWB Sandbox · Settings · Custom Modules · WikiFunctions.dll · Custom style.css · Userbox · SVN Snapshots · Usage Stats

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 diff's in AWB.

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

This is the standard/default AWB style:

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;
}