Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-05 00:25:10 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-05 01:07:47 +0300
commit8d19955c05f18675fc16dee6ca0f4da24013e816 (patch)
treef4a132c7d4ff458d307b96c786dd7cebf909997d /app/views/dashboard
parent3a3f0bf436007b3eecc0b85d0fc696951245ab6a (diff)
Revert counter parentheses back to badges
Diffstat (limited to 'app/views/dashboard')
-rw-r--r--app/views/dashboard/snippets/index.html.haml16
-rw-r--r--app/views/dashboard/todos/index.html.haml8
2 files changed, 12 insertions, 12 deletions
diff --git a/app/views/dashboard/snippets/index.html.haml b/app/views/dashboard/snippets/index.html.haml
index 53f1094ec07..d4e7862981c 100644
--- a/app/views/dashboard/snippets/index.html.haml
+++ b/app/views/dashboard/snippets/index.html.haml
@@ -13,26 +13,26 @@
%li{ class: ("active" unless params[:scope]) }
= link_to dashboard_snippets_path do
All
- %span
- (#{current_user.snippets.count})
+ %span.badge
+ = current_user.snippets.count
%li{ class: ("active" if params[:scope] == "are_private") }
= link_to dashboard_snippets_path(scope: 'are_private') do
Private
- %span
- (#{current_user.snippets.are_private.count})
+ %span.badge
+ = current_user.snippets.are_private.count
%li{ class: ("active" if params[:scope] == "are_internal") }
= link_to dashboard_snippets_path(scope: 'are_internal') do
Internal
- %span
- (#{current_user.snippets.are_internal.count})
+ %span.badge
+ = current_user.snippets.are_internal.count
%li{ class: ("active" if params[:scope] == "are_public") }
= link_to dashboard_snippets_path(scope: 'are_public') do
Public
- %span
- (#{current_user.snippets.are_public.count})
+ %span.badge
+ = current_user.snippets.are_public.count
= render 'snippets/snippets'
diff --git a/app/views/dashboard/todos/index.html.haml b/app/views/dashboard/todos/index.html.haml
index a87b796c6f3..fc42e5dcc66 100644
--- a/app/views/dashboard/todos/index.html.haml
+++ b/app/views/dashboard/todos/index.html.haml
@@ -8,15 +8,15 @@
= link_to todos_filter_path(state: 'pending') do
%span
To do
- %span
- (#{todos_pending_count})
+ %span.badge
+ = todos_pending_count
- todo_done_active = ('active' if params[:state] == 'done')
%li{class: "todos-done #{todo_done_active}"}
= link_to todos_filter_path(state: 'done') do
%span
Done
- %span
- (#{todos_done_count})
+ %span.badge
+ = todos_done_count
.nav-controls
- if @todos.any?(&:pending?)