diff options
| -rw-r--r-- | chimere/static/chimere/css/styles.css | 6 | ||||
| -rw-r--r-- | chimere/templates/chimere/detail.html | 2 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css index 4283782..479a8b8 100644 --- a/chimere/static/chimere/css/styles.css +++ b/chimere/static/chimere/css/styles.css @@ -346,8 +346,10 @@ ul#action-2 {  ul.share{      list-style-type:none;      margin:0; -    padding:0; -    display:inline; +    padding:0 1em; +    display:block; +    text-align:right; +    font-style:italic;  }  ul.share li{ diff --git a/chimere/templates/chimere/detail.html b/chimere/templates/chimere/detail.html index a7b9347..d816da3 100644 --- a/chimere/templates/chimere/detail.html +++ b/chimere/templates/chimere/detail.html @@ -1,6 +1,7 @@  {% 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>{{ marker.name }}</h2> +    {% share_bar marker.name %}  <div class='detail_content'>      {% if marker.default_pictures or marker.default_pictures or marker.default_multimedia_items%}      <div class='small-gallery'> @@ -36,7 +37,6 @@      <a href="mailto:?from={{moderator_emails}}&subject={% trans "Propose amendment" %}&body={% trans "I would like to propose an amendment for this item:"%} {{share_url}}">          {% trans "Propose amendment" %}      </a>{%endif%} -    {% share_bar marker.name %}  </div>  {% if marker.multimedia_items %}  <div id='gallery-{{time_now}}' class='gallery'> | 
