From 2184e6310a21933315064f845a0e4c0cb99d63bf Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 29 Aug 2012 13:43:19 +0100 Subject: [PATCH 1/1] Set an explicit 0px border on the map The JS code which resizes the map relies on being able to parse the border widths as a number, and by default IE7 seems to have a border of "medium" which fails to parse. --- app/assets/stylesheets/common.css.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index c32144128..6dceef868 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -383,6 +383,7 @@ h2 { #map { margin: 0px; + border: 0px; padding: 0px; } -- 2.43.2