Removed padding from the sides of cells, as it was causing larger tables to get mis-aligned.
Every sub-tree pushed things off by one pixel. With a deep tree, you end up with lines not meeting nodes. This fixes it.master
parent
beba805557
commit
914e7f2636
|
@ -26,7 +26,7 @@
|
||||||
.jOrgChart td {
|
.jOrgChart td {
|
||||||
text-align : center;
|
text-align : center;
|
||||||
vertical-align : top;
|
vertical-align : top;
|
||||||
padding : 0px 2px;
|
padding : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The node */
|
/* The node */
|
||||||
|
|
Loading…
Reference in New Issue