Commit 19ab03f4612a2e622098bc199538380b011754c1

Authored by Dmitriy Zaporozhets
1 parent 0e9080e3

minor design improvements

app/assets/stylesheets/gitlab_bootstrap/blocks.scss
... ... @@ -100,8 +100,9 @@
100 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 108 .nav-pills {
... ...
app/views/dashboard/_groups.html.haml
1 1 .ui-box
2 2 %h5.title
3 3 Groups
4   - %small
  4 + %span.light
5 5 (#{groups.count})
6 6 - if current_user.can_create_group?
7 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 9 %i.icon-plus
10 10 New Group
11 11 %ul.well-list
... ...
app/views/dashboard/_projects.html.haml
1 1 .ui-box
2 2 %h5.title
3 3 Projects
4   - %small
  4 + %span.light
5 5 (#{@projects_count})
6 6 - if current_user.can_create_project?
7 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 9 %i.icon-plus
10 10 New Project
11 11  
... ...
app/views/dashboard/_teams.html.haml
1 1 .ui-box.teams-box
2 2 %h5.title
3 3 Teams
4   - %small
  4 + %span.light
5 5 (#{teams.count})
6 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 8 %i.icon-plus
9 9 New Team
10 10 %ul.well-list
... ...