Commit 5f1c99b7 authored by Robert Speicher's avatar Robert Speicher

Fix alignment of the filter counter for Issuables

parent 7924dd5c
...@@ -80,3 +80,11 @@ ...@@ -80,3 +80,11 @@
} }
} }
} }
.issuable-filter-count {
span {
display: block;
margin-bottom: -16px;
padding: 13px 0;
}
}
...@@ -5,8 +5,9 @@ ...@@ -5,8 +5,9 @@
.nothing-here-block No issues to show .nothing-here-block No issues to show
- if @issues.present? - if @issues.present?
.pull-right .issuable-filter-count
%span.issue_counter #{@issues.total_count} %span.pull-right
issues for this filter = @issues.total_count
issues for this filter
= paginate @issues, theme: "gitlab" = paginate @issues, theme: "gitlab"
...@@ -5,8 +5,10 @@ ...@@ -5,8 +5,10 @@
.nothing-here-block No merge requests to show .nothing-here-block No merge requests to show
- if @merge_requests.present? - if @merge_requests.present?
.pull-right .issuable-filter-count
%span.cgray.pull-right #{@merge_requests.total_count} merge requests for this filter %span.pull-right
= @merge_requests.total_count
merge requests for this filter
= paginate @merge_requests, theme: "gitlab" = paginate @merge_requests, theme: "gitlab"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment