Skip to content
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
3 changes: 3 additions & 0 deletions app/assets/stylesheets/manage.sass
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ $grey-med: #999
overflow: auto
width: 100%

.narrow-icon
width: 40px

.dashboard-container-title
border-bottom: 3px solid #e5e5e5
padding: 9px 12px
Expand Down
2 changes: 1 addition & 1 deletion app/views/manage/agreements/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
%tbody
- @agreements.each do |agreement|
%tr
%td
%td.narrow-icon
= link_to '<i class="fa fa-pencil"></i>'.html_safe, edit_manage_agreement_path(agreement)
%td
= link_to '<i class="fa fa-trash"></i>'.html_safe, manage_agreement_path(agreement), method: :delete, data: { confirm: "Are you sure? The agreement will be permanently deleted. This action is irreversible." }
Expand Down