From fdf93b2bc036bce294da44e8412d3c2fcfb712d9 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Tue, 17 Dec 2024 10:10:31 -0600 Subject: [PATCH] Make close and trash more distinct --- app/assets/images/trash.svg | 1 + app/views/comments/edit.html.erb | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 app/assets/images/trash.svg diff --git a/app/assets/images/trash.svg b/app/assets/images/trash.svg new file mode 100644 index 000000000..fc95dc1a8 --- /dev/null +++ b/app/assets/images/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/views/comments/edit.html.erb b/app/views/comments/edit.html.erb index a4ecf07df..23aa3d499 100644 --- a/app/views/comments/edit.html.erb +++ b/app/views/comments/edit.html.erb @@ -9,13 +9,13 @@ Save <% end %> <%= link_to bucket_bubble_comment_path(@bubble.bucket, @bubble, @comment), class: "btn btn--small", data: { form_target: "cancel" } do %> - <%= image_tag "close.svg", aria: { hidden: true }, size: 16 %> + <%= image_tag "remove-med.svg", aria: { hidden: true }, size: 16 %> Cancel <% end %> <%= tag.button type: :submit, class: "btn btn--small btn--negative flex-item-justify-end", form: dom_id(@comment, :delete_form), data: { turbo_confirm: "Are you sure you want to delete this comment?" } do %> - <%= image_tag "remove.svg", aria: { hidden: true }, size: 16 %> + <%= image_tag "trash.svg", aria: { hidden: true }, size: 16 %> Delete <% end %>