Commit ba3c359fd565b6ccc7ce318b38224f32c0daaf15
1 parent
8f22834c
Exists in
master
and in
4 other branches
b2 fixes
Showing
7 changed files
with
8 additions
and
8 deletions
Show diff stats
app/assets/stylesheets/common.scss
app/assets/stylesheets/gitlab_bootstrap.scss
app/views/dashboard/issues.html.haml
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | = render(:partial => 'issues/show', :locals => {:issue => issue}) |
16 | 16 | %li.bottom |
17 | 17 | .row |
18 | - .span10= paginate @issues, :theme => "gitlab" | |
18 | + .span7= paginate @issues, :theme => "gitlab" | |
19 | 19 | .span4.right |
20 | 20 | %span.cgray.right #{@issues.total_count} issues |
21 | 21 | ... | ... |
app/views/dashboard/merge_requests.html.haml
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | = render(:partial => 'merge_requests/merge_request', :locals => {:merge_request => merge_request}) |
16 | 16 | %li.bottom |
17 | 17 | .row |
18 | - .span10= paginate @merge_requests, :theme => "gitlab" | |
18 | + .span7= paginate @merge_requests, :theme => "gitlab" | |
19 | 19 | .span4.right |
20 | 20 | %span.cgray.right #{@merge_requests.total_count} merge requests |
21 | 21 | ... | ... |
app/views/issues/_issues.html.haml
... | ... | @@ -7,8 +7,8 @@ |
7 | 7 | - if @issues.present? |
8 | 8 | %li.bottom |
9 | 9 | .row |
10 | - .span10= paginate @issues, :remote => true, :theme => "gitlab" | |
11 | - .span4.right | |
10 | + .span7= paginate @issues, :remote => true, :theme => "gitlab" | |
11 | + .span3.right | |
12 | 12 | %span.cgray.right #{@issues.total_count} issues for this filter |
13 | 13 | - else |
14 | 14 | %li | ... | ... |
app/views/merge_requests/index.html.haml
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 | - if @merge_requests.present? |
31 | 31 | %li.bottom |
32 | 32 | .row |
33 | - .span10= paginate @merge_requests, :theme => "gitlab" | |
33 | + .span7= paginate @merge_requests, :theme => "gitlab" | |
34 | 34 | .span4.right |
35 | 35 | %span.cgray.right #{@merge_requests.total_count} merge requests for this filter |
36 | 36 | ... | ... |