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

Fix hidden action buttons on the trash view #21

Merged
merged 1 commit into from
Jan 7, 2020
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
2 changes: 1 addition & 1 deletion docs/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changelog
1.7.3 (unreleased)
------------------

- Nothing changed yet.
- Stop trash items with long paths from hiding action buttons on the trash view. [djowett-ftw]


1.7.2 (2019-12-09)
Expand Down
8 changes: 8 additions & 0 deletions ftw/trash/browser/templates/trash.pt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
metal:use-macro="context/main_template/macros/master"
i18n:domain="ftw.trash">

<metal:block fill-slot="style_slot">
<style>
table.listing td div {
word-break: break-word;
}
</style>
</metal:block>

<div metal:fill-slot="main">
<metal:main-macro define-macro="main">

Expand Down