chiark / gitweb /
Explicitly specify border-collapse for tables where we care about the
authorRichard Kettlewell <rjk@greenend.org.uk>
Sat, 5 Jan 2008 19:15:32 +0000 (19:15 +0000)
committerRichard Kettlewell <rjk@greenend.org.uk>
Sat, 5 Jan 2008 19:15:32 +0000 (19:15 +0000)
cell spacing.  IE7 has different defaults to the UNIX browsers.

templates/disorder.css

index 2fa45687dc176881c86778230d5de9b4a4078b4c..4a6bb592d2853753c282cc54e5186112de71f86b 100644 (file)
@@ -47,18 +47,21 @@ h2 {
 
 /* table of current and future tracks */
 table.playing {
+  border-collapse: collapse;
   width: 100%;                 /* use the full available width */
   border-spacing: 0            /* no unsightly gaps between cells */
 }
 
 /* table of recently played tracks */
 table.recent {
+  border-collapse: collapse;
   width: 100%;                 /* use the full available width */
   border-spacing: 0            /* no unsightly gaps between cells */
 }
 
 /* table of newly added played tracks */
 table.new {
+  border-collapse: collapse;
   width: 100%;                 /* use the full available width */
   border-spacing: 0            /* no unsightly gaps between cells */
 }
@@ -451,6 +454,7 @@ p.prefs_new,p.prefs_head {
 }
 
 table.prefs {
+  border-collapse: collapse;
   border-spacing: 0
 }