diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-06 17:34:14 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-06 17:34:14 +0200 |
commit | f3b01cd7f12dad19a7d4a994c15fb49ee7ad327f (patch) | |
tree | f8461efa02ccb81c158c94f18d5a7d0ccf95e178 | |
parent | 1d184d869a59889242cb9c8447762c4d462988c2 (diff) | |
download | Ishtar-f3b01cd7f12dad19a7d4a994c15fb49ee7ad327f.tar.bz2 Ishtar-f3b01cd7f12dad19a7d4a994c15fb49ee7ad327f.zip |
CSS: minor update
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 2 | ||||
-rw-r--r-- | ishtar_common/static/media/style.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index ff3dc55dd..370f4bb37 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -25,7 +25,7 @@ <div class='tool modify'><a href='{% url find_modify item.pk %}'>{% trans "Modify" %}</a></div> {% if item.image %} -<a href='{{item.image.url}}' rel="prettyPhoto" title="{{item.label}}"><img src='{{item.thumbnail.url}}'/></a> +<a href='{{item.image.url}}' rel="prettyPhoto" title="{{item.label}}" class='photo'><img src='{{item.thumbnail.url}}'/></a> {% endif%} <ul class='form-flex'> diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index 155d4ce9d..7ea698edd 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -753,6 +753,10 @@ table.confirm tr.spacer td:last-child{ right:135px; } +a.photo{ + padding: 0.5em; +} + #global-vars textarea{ width:220px; } |