Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing https://github.com/plone/Products.CMFPlone/issues/2077 #132

Merged
merged 1 commit into from
Jun 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ New features:

Bug fixes:

- fixed css-classes for thumb scales ...
https://github.com/plone/Products.CMFPlone/issues/2077
[fgrcon]

- Adapt tests to the new indexing operations queueing.
Part of PLIP 1343: https://github.com/plone/Products.CMFPlone/issues/1343
[gforcada]
Expand Down
2 changes: 1 addition & 1 deletion plone/app/content/browser/contents/templates/rename.pt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<input class="form-control" name="newid_<%= index %>" value="<%= item.id %>" />
</div>

<% if(item.getIcon ){ %><img class="image-thumb" src="<%= item.getURL %>/@@images/image/thumb"><% } %>
<% if(item.getIcon ){ %><img class="thumb-thumb" src="<%= item.getURL %>/@@images/image/thumb"><% } %>

</div>
<% }) %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
</td>
<td tal:define="url python:item_use_view and item_url+'/view' or
(item_folderish and item_url+'/folder_contents'or item_url+'/');">
<img class="image-tile"
<img class="thumb-tile"
tal:define="getIcon string:$item_url/@@images/image/tile'"
tal:condition="item_has_image"
tal:attributes="src string:$getIcon">
Expand Down