diff --git a/app/assets/stylesheets/gitlab_bootstrap/buttons.scss b/app/assets/stylesheets/gitlab_bootstrap/buttons.scss
index b66723d4cd0a01e2bc0226d43f7b6d6abbfdea46..f9249e871b71a7b6d232f67900f9fa2d5d90b7bf 100644
--- a/app/assets/stylesheets/gitlab_bootstrap/buttons.scss
+++ b/app/assets/stylesheets/gitlab_bootstrap/buttons.scss
@@ -1,8 +1,6 @@
 .btn {
   @include bg-gradient(#f7f7f7, #d5d5d5);
   border-color:#aaa;
-  font-size: 13px;
-  line-height: 18px;
   &:hover {
     @include bg-gray-gradient;
     border-color:#bbb;
@@ -86,7 +84,6 @@
 
   &.small {
     @extend .btn-small;
-    line-height: 18px;
   }
 
   &.active {
diff --git a/app/assets/stylesheets/gitlab_bootstrap/typography.scss b/app/assets/stylesheets/gitlab_bootstrap/typography.scss
index efe336cd146fa58ca4741504d45506ae0096489c..fe3bd68b608f6887a4ce7ef6b19ac409d009a2b1 100644
--- a/app/assets/stylesheets/gitlab_bootstrap/typography.scss
+++ b/app/assets/stylesheets/gitlab_bootstrap/typography.scss
@@ -14,6 +14,11 @@ h3.page_title {
   line-height: 28px;
 }
 
+h6 {
+  color: #888;
+  text-transform: uppercase;
+}
+
 /** CODE **/
 pre {
   font-family:'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
diff --git a/app/assets/stylesheets/sections/projects.scss b/app/assets/stylesheets/sections/projects.scss
index a17d2c96c645236effcabb34e8f6e6bf89c2dcff..c9d386ab5bb71caae96d813c0738bbbfe4bc9d31 100644
--- a/app/assets/stylesheets/sections/projects.scss
+++ b/app/assets/stylesheets/sections/projects.scss
@@ -85,14 +85,18 @@
 }
 
 .project_clone_holder {
+  input[type="text"],
   .btn {
-    height: 27px;
+    font-size:12px;
+    line-height: 18px;
+    margin: 0;
+    padding: 3px 10px;
   }
+
   input[type="text"] {
-    height: 17px;
     border: 1px solid #BBB;
     box-shadow: none;
-    padding: 4px 10px;
+    margin-left: -1px;
   }
 }