diff --git a/app/assets/stylesheets/sections/nav.scss b/app/assets/stylesheets/sections/nav.scss
index 514b0b7c69f6f3f0bd50816d5c4c2b837225f1fe..7b7bcf807b5e7edba8b73b5177144e1a1fb2373e 100644
--- a/app/assets/stylesheets/sections/nav.scss
+++ b/app/assets/stylesheets/sections/nav.scss
@@ -10,17 +10,17 @@
     top: 3px;
     overflow: hidden;
     .count {
-      position: relative;
-      top: -1px;
+      font-weight: normal;
       display: inline-block;
       height: 15px;
-      margin: 0 0 0 5px;
-      padding: 0 8px 1px 8px;
+      padding: 1px 6px;
       height: auto;
       font-size: 0.82em;
       line-height: 14px;
       text-align: center;
       color: #777;
+      background: #eee;
+      @include border-radius(8px);
     }
     .label {
       background: $hover;
diff --git a/app/assets/stylesheets/themes/ui_basic.scss b/app/assets/stylesheets/themes/ui_basic.scss
index 4e34e8b1b6b675dd1aa665161c77502eac85a6ec..b0ee94ef34a7e43bee60508429bfd70fbe4be5a7 100644
--- a/app/assets/stylesheets/themes/ui_basic.scss
+++ b/app/assets/stylesheets/themes/ui_basic.scss
@@ -5,7 +5,7 @@
  */
 .ui_basic {
   .separator {
-    background: white;
+    background: #F9F9F9;
     border-left: 1px solid #DDD;
   }
 }
diff --git a/app/views/projects/_clone_panel.html.haml b/app/views/projects/_clone_panel.html.haml
index 8bc90a264d77c2ff9f97e6a792775a8a5dd7940c..f8276c3c2b686f88d96985c9d66e084a01022ffe 100644
--- a/app/views/projects/_clone_panel.html.haml
+++ b/app/views/projects/_clone_panel.html.haml
@@ -7,7 +7,7 @@
         - unless @project.empty_repo?
           - if can?(current_user, :fork_project, @project) && @project.namespace != current_user.namespace
             - if current_user.already_forked?(@project)
-              = link_to project_path(current_user.fork_of(@project)), class: 'btn grouped success' do
+              = link_to project_path(current_user.fork_of(@project)), class: 'btn grouped btn-primary' do
                 Forked
             - else
               = link_to fork_project_path(@project), title: "Fork", class: "btn grouped", method: "POST" do