mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-03 04:25:21 +02:00
16 lines
879 B
Text
16 lines
879 B
Text
|
<div class="fixed bottom-6 z-10 flex items-center justify-between rounded-xl bg-gray-900 px-4 text-sm text-white w-[420px] py-1.5">
|
||
|
<div class="flex items-center gap-2">
|
||
|
<%= check_box_tag "entry_selection", 1, true, class: "maybe-checkbox maybe-checkbox--dark", data: { action: "bulk-select#deselectAll" } %>
|
||
|
|
||
|
<p data-bulk-select-target="selectionBarText"></p>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex items-center gap-1 text-gray-500">
|
||
|
<%= form_with url: bulk_delete_transactions_path, data: { turbo_confirm: true, turbo_frame: "_top" } do %>
|
||
|
<button type="button" data-bulk-select-scope-param="bulk_delete" data-action="bulk-select#submitBulkRequest" class="p-1.5 group hover:bg-gray-700 flex items-center justify-center rounded-md" title="Delete">
|
||
|
<%= lucide_icon "trash-2", class: "w-5 group-hover:text-white" %>
|
||
|
</button>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|