Showing 2 changed files with 10 additions and 4 deletions
+8 -2
public/css/common.css
... ...
@@ -538,7 +538,7 @@ ul.issues-label-pallet li {
538 538
   padding:7px 15px;
539 539
 }
540 540
 .issue-message-header-owner {
541
-  background:#f4fcef;
541
+  background:#f7fafc;
542 542
   border-bottom:1px solid #e6e9e6;
543 543
 }
544 544
 
... ...
@@ -1952,6 +1952,12 @@ button.close {
1952 1952
   cursor: default;
1953 1953
 }
1954 1954
 
1955
+.btn-fork {
1956
+  font-size:13px;
1957
+  padding:5px 20px;
1958
+  height:28px;
1959
+}
1960
+
1955 1961
 .btn-primary {
1956 1962
   color: #ffffff;
1957 1963
   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
... ...
@@ -3464,7 +3470,7 @@ button.close {
3464 3470
   overflow:hidden;
3465 3471
   padding: 10px;
3466 3472
   line-height: 20px;
3467
-  background-color: #f4fcef;
3473
+  background-color: #f7fafc;
3468 3474
   border: 1px solid #d0dbe2;
3469 3475
   border-radius: 3px;
3470 3476
   border-bottom-right-radius: 0;
+2 -2
templates/include/header.html.ep
... ...
@@ -98,9 +98,9 @@
98 98
           % if (defined $project_id) {
99 99
             <div class="project-header-btn-container">
100 100
               % if ($logined && $session_user->{id} ne $user_id ) {
101
-                <a href="<%= url_for("/$user_id/$project_id/fork") %>" class="btn">Fork</a>
101
+                <a href="<%= url_for("/$user_id/$project_id/fork") %>" class="btn btn-fork">Fork</a>
102 102
               % } else {
103
-                <button class="btn disabled" disabled>Fork</button>
103
+                <button class="btn btn-fork disabled" disabled>Fork</button>
104 104
               % }
105 105
             </div>
106 106
           % }