Commit 19ab03f4612a2e622098bc199538380b011754c1

Authored by Dmitriy Zaporozhets
1 parent 0e9080e3

minor design improvements

app/assets/stylesheets/gitlab_bootstrap/blocks.scss
@@ -100,8 +100,9 @@ @@ -100,8 +100,9 @@
100 margin-top: 0; 100 margin-top: 0;
101 } 101 }
102 102
103 - .btn-tiny {  
104 - @include box-shadow(0 0px 0px 1px #f1f1f1); 103 + .btn {
  104 + position: relative;
  105 + top: -2px;
105 } 106 }
106 107
107 .nav-pills { 108 .nav-pills {
app/views/dashboard/_groups.html.haml
1 .ui-box 1 .ui-box
2 %h5.title 2 %h5.title
3 Groups 3 Groups
4 - %small 4 + %span.light
5 (#{groups.count}) 5 (#{groups.count})
6 - if current_user.can_create_group? 6 - if current_user.can_create_group?
7 %span.pull-right 7 %span.pull-right
8 - = link_to new_group_path, class: "btn btn-tiny info" do 8 + = link_to new_group_path, class: "btn btn-small" do
9 %i.icon-plus 9 %i.icon-plus
10 New Group 10 New Group
11 %ul.well-list 11 %ul.well-list
app/views/dashboard/_projects.html.haml
1 .ui-box 1 .ui-box
2 %h5.title 2 %h5.title
3 Projects 3 Projects
4 - %small 4 + %span.light
5 (#{@projects_count}) 5 (#{@projects_count})
6 - if current_user.can_create_project? 6 - if current_user.can_create_project?
7 %span.pull-right 7 %span.pull-right
8 - = link_to new_project_path, class: "btn btn-tiny info" do 8 + = link_to new_project_path, class: "btn btn-small" do
9 %i.icon-plus 9 %i.icon-plus
10 New Project 10 New Project
11 11
app/views/dashboard/_teams.html.haml
1 .ui-box.teams-box 1 .ui-box.teams-box
2 %h5.title 2 %h5.title
3 Teams 3 Teams
4 - %small 4 + %span.light
5 (#{teams.count}) 5 (#{teams.count})
6 %span.pull-right 6 %span.pull-right
7 - = link_to new_team_path, class: "btn btn-tiny info" do 7 + = link_to new_team_path, class: "btn btn-small" do
8 %i.icon-plus 8 %i.icon-plus
9 New Team 9 New Team
10 %ul.well-list 10 %ul.well-list