changeset 5091:5995968a6fcc stable

diff view: fix tab width, move diff markers a bit to the left
author Andrew Shadura <andrew@shadura.me>
date Tue, 05 May 2015 13:27:20 +0200
parents 85a6526a15a8
children d660ccdd628d
files kallithea/public/css/style.css
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Fri May 01 21:17:55 2015 +0200
+++ b/kallithea/public/css/style.css	Tue May 05 13:27:20 2015 +0200
@@ -4966,15 +4966,27 @@
 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 {
@@ -4991,6 +5003,7 @@
 tr.line.del:hover td .add-bubble,
 tr.line.unmod:hover td .add-bubble {
     display: block;
+    z-index: 1;
 }
 
 .add-bubble div {