Changeset - 5995968a6fcc
[Not reviewed]
stable
0 1 0
Andrew Shadura - 11 years ago 2015-05-05 13:27:20
andrew@shadura.me
diff view: fix tab width, move diff markers a bit to the left
1 file changed with 13 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -4963,21 +4963,33 @@ table.code-difftable .code pre {
 
    white-space: pre-wrap;
 
}
 

	
 
table.code-difftable .del .code pre:before {
 
    content: "-";
 
    color: #550000;
 
    float: left;
 
    left: -1em;
 
    position: relative;
 
    width: 0;
 
}
 
 
 
table.code-difftable .add .code pre:before {
 
    content: "+";
 
    color: #005500;
 
    float: left;
 
    left: -1em;
 
    position: relative;
 
    width: 0;
 
}
 
 
 
table.code-difftable .unmod .code pre:before {
 
    content: " ";
 
    float: left;
 
    left: -1em;
 
    position: relative;
 
    width: 0;
 
}
 
 
 
.add-bubble {
 
    position: relative;
 
    display: none;
 
    float: left;
 
@@ -4988,12 +5000,13 @@ table.code-difftable .unmod .code pre:be
 
}
 

	
 
tr.line.add:hover td .add-bubble,
 
tr.line.del:hover td .add-bubble,
 
tr.line.unmod:hover td .add-bubble {
 
    display: block;
 
    z-index: 1;
 
}
 

	
 
.add-bubble div {
 
    background: #577632;
 
    width: 16px;
 
    height: 16px;
0 comments (0 inline, 0 general)