Difference between revisions of "MediaWiki:Common.less/diffs.less"

From The Kingkiller Chronicle Wiki
Jump to navigation Jump to search
(Created page with "// <pre> →‎================= diffs =================: td.diff-context { background: #fdfdfd; border-color: #f1f1f1; opacity: .8; } td.diff-addedli...")
 
(Corey changed the content model of the page MediaWiki:Common.less/diffs.less from "wikitext" to "CSS")
Tag: content model change
 
(No difference)

Latest revision as of 12:02, 20 December 2018

// <pre>
/* =================
         diffs
   ================= */

td.diff-context {
    background: #fdfdfd;
    border-color: #f1f1f1;
    opacity: .8;
}

td.diff-addedline {
	background: @white;
    border-color: #438ab5; // blue

    .diffchange {
        background: #bddff2;
    }

}

td.diff-deletedline {
	background: @white;
    border-color: #379541; // green

    .diffchange {
        background: #c1edbf;
    }

}

// kinda redundant hr between bottom of diff and page content
hr.diff-hr {
	display: none;
}