From 012c707d5c03631b365886904089d98f3747d308 Mon Sep 17 00:00:00 2001 Message-Id: <012c707d5c03631b365886904089d98f3747d308.1715193771.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 5 Jan 2008 19:15:32 +0000 Subject: [PATCH] Explicitly specify border-collapse for tables where we care about the cell spacing. IE7 has different defaults to the UNIX browsers. Organization: Straylight/Edgeware From: Richard Kettlewell --- templates/disorder.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/disorder.css b/templates/disorder.css index 2fa4568..4a6bb59 100644 --- a/templates/disorder.css +++ b/templates/disorder.css @@ -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 } -- [mdw]