fix #56
This commit is contained in:
@@ -103,6 +103,11 @@ form textarea{
|
|||||||
height:20px;
|
height:20px;
|
||||||
width:auto;
|
width:auto;
|
||||||
}
|
}
|
||||||
|
.stamp
|
||||||
|
{
|
||||||
|
height:56px;
|
||||||
|
width:auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
<div class="manage_images_2">
|
<div class="manage_images_2">
|
||||||
{% for stamp in stamps %}
|
{% for stamp in stamps %}
|
||||||
<div class="manage_stamps_3">
|
<div class="manage_stamps_3">
|
||||||
<img src="{{ url_for('static', filename='stamps/'+stamp[2]) }}">
|
<img class="stamp" src="{{ url_for('static', filename='stamps/'+stamp[2]) }}">
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
<a href="{{ url_for('manage.delete_stamp', mid=member[0], stamp_id=stamp[0]) }}">Delete</a>
|
<a href="{{ url_for('manage.delete_stamp', mid=member[0], stamp_id=stamp[0]) }}">Delete</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
{% if stamps|length > 0 %}
|
{% if stamps|length > 0 %}
|
||||||
<div class="heading big">Stamps</div>
|
<div class="heading big">Stamps</div>
|
||||||
{% for stamp in stamps %}
|
{% for stamp in stamps %}
|
||||||
<img src="{{ url_for('static', filename='stamps/'+stamp[0]) }}">
|
<img class="stamp" src="{{ url_for('static', filename='stamps/'+stamp[0]) }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
|
|||||||
Reference in New Issue
Block a user