Changeset - a06804c28d74
[Not reviewed]
stable
0 1 0
Andrew Shadura - 11 years ago 2015-04-22 14:20:29
andrew@shadura.me
css: add text +/- markers to the diff to improve readability for colour blind (fixes #77)
1 file changed with 14 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -4964,6 +4964,20 @@ table.code-difftable .code pre {
 
    white-space: pre-wrap;
 
}
 

	
 
table.code-difftable .del .code pre:before {
 
    content: "-";
 
    color: #550000;
 
}
 
 
 
table.code-difftable .add .code pre:before {
 
    content: "+";
 
    color: #005500;
 
}
 
 
 
table.code-difftable .unmod .code pre:before {
 
    content: " ";
 
}
 
 
 
.add-bubble {
 
    position: relative;
 
    display: none;
0 comments (0 inline, 0 general)