diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-02-24 20:53:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-02-24 20:53:20 +0100 |
commit | 3c77ed9aa9b4f2c1f594f221eac9d7c03a4755be (patch) | |
tree | 2b3ef83d4590584e643f85886b6a3a98bdf5d77e | |
parent | 5c29b59c93c73497af08ab96c1c356d54fd9d807 (diff) | |
parent | 4e306ce4c5686c3741ba1dcf6a0c17ad6778f084 (diff) | |
download | Chimère-3c77ed9aa9b4f2c1f594f221eac9d7c03a4755be.tar.bz2 Chimère-3c77ed9aa9b4f2c1f594f221eac9d7c03a4755be.zip |
Merge branch 'v2.2'
Conflicts:
chimere/static/chimere/css/styles.css
chimere/templates/chimere/blocks/areas.html
-rw-r--r-- | chimere/static/chimere/css/styles.css | 16 | ||||
-rw-r--r-- | chimere/static/chimere/js/base.js | 1 | ||||
l--------- | chimere/templates/chimere/blocks/areas.html | 1 | ||||
-rw-r--r-- | chimere/templates/chimere/detail.html | 1 |
4 files changed, 13 insertions, 6 deletions
diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css index 98bc7ab..2dc0841 100644 --- a/chimere/static/chimere/css/styles.css +++ b/chimere/static/chimere/css/styles.css @@ -294,15 +294,13 @@ ul#action-2 { } #maps-div label{ - font-weight:bold; + color: #777; + font-variant:small-caps; } #maps{ position:absolute; z-index:5; -} - -#maps{ bottom:105px; left:18px; padding:0; @@ -339,6 +337,16 @@ ul#action-2 { margin:4px 8px; } +#close-detail{ + position: absolute; + right: 10px; + font-weight:bold; +} + +#close-detail:hover{ + cursor:pointer; +} + #news_content{ overflow:auto; } diff --git a/chimere/static/chimere/js/base.js b/chimere/static/chimere/js/base.js index b26d9f3..49751b2 100644 --- a/chimere/static/chimere/js/base.js +++ b/chimere/static/chimere/js/base.js @@ -60,7 +60,6 @@ function open_window(url){ return false; } - function saveExtent() { /* save the current extent in a cookie */ if(!map) return; diff --git a/chimere/templates/chimere/blocks/areas.html b/chimere/templates/chimere/blocks/areas.html deleted file mode 120000 index 0883da9..0000000 --- a/chimere/templates/chimere/blocks/areas.html +++ /dev/null @@ -1 +0,0 @@ -maps.html
\ No newline at end of file diff --git a/chimere/templates/chimere/detail.html b/chimere/templates/chimere/detail.html index 259df31..854789d 100644 --- a/chimere/templates/chimere/detail.html +++ b/chimere/templates/chimere/detail.html @@ -1,4 +1,5 @@ {% load i18n sanitize chimere_tags %} +<button onclick='$("#detail").fadeOut();return false;' type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h2 class='ui-widget ui-state-default ui-corner-all ui-widget-header'>{{ marker.name }}</h2> <div class='detail_content'> {% if marker.default_pictures or marker.default_pictures or marker.default_multimedia_items%} |