DaltonPimmel / flexigrid

Automatically exported from code.google.com/p/flexigrid
0 stars 0 forks source link

CSS improvement #14

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi there,
I'm just starting using flexigrid and I love it simplicity and extendability. 
Great job!
As I'm using it to display multiple things (such as links), I quickly viewed a 
small problem in the CSS under firefox: columns of the grid (td) are 2 pixels 
larger than the title (th). I don't know exacly why, but this fix the problem 
and does not affects the look in Chrome and IE:
just add the following lines in the CSS:
.flexigrid div.hDiv th, .flexigrid  div.bDiv td  /* common cell properties*/ { 
...
    padding-left: 0;
    padding-right: 0;
}
Hope it could help :)
RvK.

Original issue reported on code.google.com by romain....@gmail.com on 18 Jan 2011 at 8:13

GoogleCodeExporter commented 8 years ago
Thanks. Done and applied to trunk.

Original comment by eric.caron on 22 Apr 2011 at 8:36