mirror of
https://github.com/we-promise/sure.git
synced 2026-07-12 12:55:20 +00:00
The budget/report period navigation triggers (the prev/next chevrons + the 'Month v' popover button) used hover:bg-alpha-black-25 -- a 3% black overlay that is invisible on dark surfaces, so they had no visible hover affordance in dark mode. Swap to the theme-aware hover:bg-surface-hover token (gray-100 in light, gray-800 in dark) already used by the settings nav. 4 occurrences across budgets/_picker, budgets/_budget_header, reports/index. (Also autocorrected a pre-existing single-quote in reports/index.)
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
<%# locals: (budget:, previous_budget:, next_budget:, latest_budget:) %>
|
|
|
|
<div class="flex items-center gap-1 mb-4">
|
|
<div class="flex items-center gap-2">
|
|
<% if budget.previous_budget_param %>
|
|
<%= render DS::Link.new(
|
|
variant: "icon",
|
|
icon: "chevron-left",
|
|
href: budget_path(budget.previous_budget_param),
|
|
) %>
|
|
<% else %>
|
|
<span class="text-subdued">
|
|
<%= icon "chevron-left", color: "current" %>
|
|
</span>
|
|
<% end %>
|
|
|
|
<% if budget.next_budget_param %>
|
|
<%= render DS::Link.new(
|
|
variant: "icon",
|
|
icon: "chevron-right",
|
|
href: budget_path(budget.next_budget_param),
|
|
) %>
|
|
<% else %>
|
|
<span class="text-subdued">
|
|
<%= icon "chevron-right", color: "current" %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= render DS::Popover.new(variant: "button") do |popover| %>
|
|
<% popover.with_button class: "flex items-center gap-1 hover:bg-surface-hover cursor-pointer rounded-md p-2" do %>
|
|
<span class="text-primary font-medium text-lg lg:text-base"><%= @budget.name %></span>
|
|
<%= icon("chevron-down") %>
|
|
<% end %>
|
|
|
|
<% popover.with_custom_content do %>
|
|
<%= render "budgets/picker", family: Current.family, year: budget.start_date.year %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<div class="ml-auto">
|
|
<%= render DS::Link.new(
|
|
text: t(".today"),
|
|
variant: "outline",
|
|
href: budget_path(Budget.date_to_param(Date.current)),
|
|
) %>
|
|
</div>
|
|
</div>
|