diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2012-12-16 21:57:19 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2012-12-16 21:57:19 +0100 |
commit | 98b927250ecdce4bc96ece2908ce2c9b49b21f76 (patch) | |
tree | f4522be4e97154bc46c7e18a19e9a9513ab15f53 /mediagoblin/templates | |
parent | cacb6feae48fd2657f02d85dbe949580d0fa6b5b (diff) | |
download | mediagoblin-98b927250ecdce4bc96ece2908ce2c9b49b21f76.tar.lz mediagoblin-98b927250ecdce4bc96ece2908ce2c9b49b21f76.tar.xz mediagoblin-98b927250ecdce4bc96ece2908ce2c9b49b21f76.zip |
Remove collection_thumbnail styling, so collection thumbnails are styled the same as other thumbnails
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/utils/collection_gallery.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/templates/mediagoblin/utils/collection_gallery.html b/mediagoblin/templates/mediagoblin/utils/collection_gallery.html index af332537..ab5e46ea 100644 --- a/mediagoblin/templates/mediagoblin/utils/collection_gallery.html +++ b/mediagoblin/templates/mediagoblin/utils/collection_gallery.html @@ -27,7 +27,7 @@ {% for item in row %} {% set media_entry = item.get_media_entry %} {% set entry_url = media_entry.url_for_self(request.urlgen) %} - <td class="collection_thumbnail thumb_entry + <td class="media_thumbnail thumb_entry {%- if loop.first %} thumb_entry_first {%- elif loop.last %} thumb_entry_last{% endif %}"> <a href="{{ entry_url }}"> @@ -35,7 +35,6 @@ </a> {% if item.note %} - <br /> <a href="{{ entry_url }}">{{ item.note }}</a> {% endif %} {% if request.user and @@ -46,7 +45,6 @@ user=item.in_collection.get_creator.username, collection=item.in_collection.slug, collection_item=item.id) -%} - <br /> <a href="{{ remove_url }}" class="remove"> {%- trans %}(remove){% endtrans -%} </a> |