diff options
| -rw-r--r-- | chimere/static/chimere/css/styles.css | 13 | ||||
| -rw-r--r-- | chimere/static/chimere/js/jquery.chimere.js | 2 | ||||
| -rw-r--r-- | chimere/templates/chimere/blocks/map.html | 1 | 
3 files changed, 7 insertions, 9 deletions
| diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css index 24dcef1..3c2b2e7 100644 --- a/chimere/static/chimere/css/styles.css +++ b/chimere/static/chimere/css/styles.css @@ -890,13 +890,12 @@ ul#multimedia_list_content li.multimedia{  }  #waiting-content { -    width:95px; -    position:relative; -    margin:0 auto; -    background-color:white; -    padding:10px 5px 0 5px; -    border:1px solid black; -    text-align:center; +    width: 35px; +    position: relative; +    margin: 0 auto; +    padding: 0; +    border: 1px solid #ccc; +    text-align: center;  }  /* openlayer customisation */ diff --git a/chimere/static/chimere/js/jquery.chimere.js b/chimere/static/chimere/js/jquery.chimere.js index ca918e0..4275eb1 100644 --- a/chimere/static/chimere/js/jquery.chimere.js +++ b/chimere/static/chimere/js/jquery.chimere.js @@ -2261,7 +2261,7 @@ function transform(obj) {          /* put the marker on the map and update latitude and longitude fields */          putEditMarker: function (lonlat, zoom){              if (settings.features.getLength()) settings.features.pop(); -            console.log(lonlat); +            // console.log(lonlat);              var point = new ol.geom.Point(lonlat);              point.transform(EPSG_DISPLAY_PROJECTION, EPSG_PROJECTION);              var feature = new ol.Feature({ diff --git a/chimere/templates/chimere/blocks/map.html b/chimere/templates/chimere/blocks/map.html index 007f507..9a39647 100644 --- a/chimere/templates/chimere/blocks/map.html +++ b/chimere/templates/chimere/blocks/map.html @@ -25,7 +25,6 @@ $(function(){  <div id="waiting">      <div id="waiting-content">          <img alt='Ajax loader' src='{{STATIC_URL}}chimere/img/ajax-loader.gif'/> -        <p>{% trans "Loading of the map in progress" %}</p>      </div>  </div>  <div id="layer_selection"> | 
