From: Tom Hughes Date: Wed, 29 Aug 2012 12:43:19 +0000 (+0100) Subject: Set an explicit 0px border on the map X-Git-Tag: live~5399 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/2184e6310a21933315064f845a0e4c0cb99d63bf?ds=sidebyside 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. --- 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; }