Add active states to nav bar counters
This commit is contained in:
parent
3209c07140
commit
494926a1fb
2 changed files with 8 additions and 3 deletions
|
@ -24,19 +24,19 @@
|
||||||
= link_to search_path, title: 'Search', aria: { label: "Search" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
= link_to search_path, title: 'Search', aria: { label: "Search" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
||||||
= icon('search')
|
= icon('search')
|
||||||
- if current_user
|
- if current_user
|
||||||
%li.user-counter
|
= nav_link(path: 'dashboard#issues', html_options: { class: "user-counter" }) do
|
||||||
= link_to assigned_issues_dashboard_path, title: 'Issues', class: 'dashboard-shortcuts-issues', aria: { label: "Issues" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
= link_to assigned_issues_dashboard_path, title: 'Issues', class: 'dashboard-shortcuts-issues', aria: { label: "Issues" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
||||||
= custom_icon('issues')
|
= custom_icon('issues')
|
||||||
- issues_count = assigned_issuables_count(:issues)
|
- issues_count = assigned_issuables_count(:issues)
|
||||||
%span.badge.issues-count{ class: ('hidden' if issues_count.zero?) }
|
%span.badge.issues-count{ class: ('hidden' if issues_count.zero?) }
|
||||||
= number_with_delimiter(issues_count)
|
= number_with_delimiter(issues_count)
|
||||||
%li.user-counter
|
= nav_link(path: 'dashboard#merge_requests', html_options: { class: "user-counter" }) do
|
||||||
= link_to assigned_mrs_dashboard_path, title: 'Merge requests', class: 'dashboard-shortcuts-merge_requests', aria: { label: "Merge requests" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
= link_to assigned_mrs_dashboard_path, title: 'Merge requests', class: 'dashboard-shortcuts-merge_requests', aria: { label: "Merge requests" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
||||||
= custom_icon('mr_bold')
|
= custom_icon('mr_bold')
|
||||||
- merge_requests_count = assigned_issuables_count(:merge_requests)
|
- merge_requests_count = assigned_issuables_count(:merge_requests)
|
||||||
%span.badge.merge-requests-count{ class: ('hidden' if merge_requests_count.zero?) }
|
%span.badge.merge-requests-count{ class: ('hidden' if merge_requests_count.zero?) }
|
||||||
= number_with_delimiter(merge_requests_count)
|
= number_with_delimiter(merge_requests_count)
|
||||||
%li.user-counter
|
= nav_link(controller: 'dashboard/todos', html_options: { class: "user-counter" }) do
|
||||||
= link_to dashboard_todos_path, title: 'Todos', aria: { label: "Todos" }, class: 'shortcuts-todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
= link_to dashboard_todos_path, title: 'Todos', aria: { label: "Todos" }, class: 'shortcuts-todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
||||||
= custom_icon('todo_done')
|
= custom_icon('todo_done')
|
||||||
%span.badge.todos-count{ class: ('hidden' if todos_pending_count.zero?) }
|
%span.badge.todos-count{ class: ('hidden' if todos_pending_count.zero?) }
|
||||||
|
|
5
changelogs/unreleased/37335-counter-active-state.yml
Normal file
5
changelogs/unreleased/37335-counter-active-state.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Add active states to nav bar counters
|
||||||
|
merge_request:
|
||||||
|
author:
|
||||||
|
type: changed
|
Loading…
Reference in a new issue