Skip to content

Commit

Permalink
Geoencoder plugin: Avoid map iframe horizontal scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Jun 18, 2012
1 parent cfffa73 commit 1d00bbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webapp/plugins/geoencoder/assets/css/maps.css
Expand Up @@ -10,7 +10,7 @@
#userpanel a {font-size: 14px; padding-left: 4px; margin-bottom:10px;}
#mappanel { height:98%; margin: auto; width:650px; border:1px solid #666;}
#map { height:100%; }
.columns {border: none; display: table-cell; vertical-align: top; width:270px;}
.heading {width:870px; margin: auto; padding:20px 0px; border-bottom:1px solid #cccccc; margin-bottom:40px;}
.columns {border: none; display: table-cell; vertical-align: top; width:240px;}
.heading {width:820px; margin: auto; padding:20px 0px; border-bottom:1px solid #cccccc; margin-bottom:40px;}
html {background: #fff!important;}
#mainTable {display:table-row;}
2 changes: 1 addition & 1 deletion webapp/plugins/geoencoder/assets/js/generatemap.js
Expand Up @@ -76,7 +76,7 @@
var item = document.createElement("div");
var tit = document.createElement("div");
tit.innerHTML = title;
item.style.cssText = 'padding:2px 0;width:243px;max-height:52px;overflow:hidden;border-bottom:1px solid #E0ECFF;cursor:pointer;overflow:hidden;';
item.style.cssText = 'padding:2px 0;width:200px;max-height:52px;overflow:hidden;border-bottom:1px solid #E0ECFF;cursor:pointer;overflow:hidden;';
panel.appendChild(item);
item.appendChild(tit);
GEvent.addDomListener(item, "mouseover", function() {
Expand Down

0 comments on commit 1d00bbf

Please sign in to comment.