diff --git a/app/views/entries/_selection_bar.html.erb b/app/views/entries/_selection_bar.html.erb index 4c7d8d48b..4db508efb 100644 --- a/app/views/entries/_selection_bar.html.erb +++ b/app/views/entries/_selection_bar.html.erb @@ -1,4 +1,4 @@ -
+
<%= check_box_tag "entry_selection", 1, true, class: "checkbox checkbox--light", data: { action: "bulk-select#deselectAll" } %> @@ -7,8 +7,8 @@
<%= form_with url: transactions_bulk_deletion_path, data: { turbo_confirm: CustomConfirm.for_resource_deletion("entry").to_data_attribute, turbo_frame: "_top" } do %> - <% end %>
diff --git a/app/views/transactions/_selection_bar.html.erb b/app/views/transactions/_selection_bar.html.erb index 65e2ce12f..1e29c9d65 100644 --- a/app/views/transactions/_selection_bar.html.erb +++ b/app/views/transactions/_selection_bar.html.erb @@ -1,6 +1,6 @@ -
+
- <%= check_box_tag "entry_selection", 1, true, class: "checkbox checkbox--dark", data: { action: "bulk-select#deselectAll" } %> + <%= check_box_tag "entry_selection", 1, true, class: "checkbox checkbox--light", data: { action: "bulk-select#deselectAll" } %>

@@ -8,15 +8,15 @@
<%= turbo_frame_tag "bulk_transaction_edit_drawer" %> <%= link_to new_transactions_bulk_update_path, - class: "p-1.5 group hover:bg-inverse flex items-center justify-center rounded-md", + class: "p-1.5 group/edit hover:bg-inverse flex items-center justify-center rounded-md", title: "Edit", data: { turbo_frame: "bulk_transaction_edit_drawer" } do %> - <%= icon "pencil-line", class: "group-hover:text-inverse" %> + <%= icon "pencil-line", class: "group-hover/edit:text-inverse" %> <% end %> <%= form_with url: transactions_bulk_deletion_path, data: { turbo_confirm: true, turbo_frame: "_top" } do %> - <% end %>