diff --git a/app/views/trades/_trade.html.erb b/app/views/trades/_trade.html.erb index 2a4c32f0..7d940aa6 100644 --- a/app/views/trades/_trade.html.erb +++ b/app/views/trades/_trade.html.erb @@ -23,7 +23,7 @@ <%= link_to entry.name, entry_path(entry), data: { turbo_frame: "drawer", turbo_prefetch: false }, - class: "hover:underline hover:text-gray-800" %> + class: "hover:underline" %> <% end %> diff --git a/app/views/transactions/_transaction.html.erb b/app/views/transactions/_transaction.html.erb index d031134f..a046915e 100644 --- a/app/views/transactions/_transaction.html.erb +++ b/app/views/transactions/_transaction.html.erb @@ -43,7 +43,7 @@ turbo_frame: "drawer", turbo_prefetch: false }, - class: "hover:underline hover:text-gray-800" + class: "hover:underline" ) %> <% if entry.excluded %> diff --git a/app/views/transactions/_transfer_match.html.erb b/app/views/transactions/_transfer_match.html.erb index a0824a63..1b3a6df7 100644 --- a/app/views/transactions/_transfer_match.html.erb +++ b/app/views/transactions/_transfer_match.html.erb @@ -12,7 +12,7 @@ <%= button_to transfer_path(transaction.transfer, transfer: { status: "confirmed" }), method: :patch, - class: "text-secondary hover:text-gray-800 flex items-center justify-center cursor-pointer", + class: "text-secondary flex items-center justify-center cursor-pointer", title: "Confirm match" do %> <%= icon "check", size: "sm", class: "text-secondary hover:text-primary" %> <% end %> @@ -20,7 +20,7 @@ <%= button_to transfer_path(transaction.transfer, transfer: { status: "rejected" }), method: :patch, data: { turbo: false }, - class: "text-secondary hover:text-gray-800 flex items-center justify-center cursor-pointer", + class: "text-secondary hover:text-primary flex items-center justify-center cursor-pointer", title: "Reject match" do %> <%= icon "x", size: "sm", class: "text-subdued hover:text-primary" %> <% end %> diff --git a/app/views/valuations/_valuation.html.erb b/app/views/valuations/_valuation.html.erb index 8d93f1e1..416f1775 100644 --- a/app/views/valuations/_valuation.html.erb +++ b/app/views/valuations/_valuation.html.erb @@ -20,7 +20,7 @@ <%= link_to entry.name, entry_path(entry), data: { turbo_frame: "drawer", turbo_prefetch: false }, - class: "hover:underline hover:text-gray-800" %> + class: "hover:underline" %>