| ... | ... |
@@ -35,6 +35,14 @@ |
| 35 | 35 |
box-sizing: border-box; |
| 36 | 36 |
} |
| 37 | 37 |
|
| 38 |
+.header-issue-count {
|
|
| 39 |
+ background:#eee; |
|
| 40 |
+ color:#555; |
|
| 41 |
+ display:inline-block; |
|
| 42 |
+ width:18px; |
|
| 43 |
+ height:18px; |
|
| 44 |
+ border-radius:9px; |
|
| 45 |
+} |
|
| 38 | 46 |
.commits-count {
|
| 39 | 47 |
margin:0; |
| 40 | 48 |
border-radius: 3px 3px 0 0; |
| ... | ... |
@@ -124,7 +124,7 @@ |
| 124 | 124 |
<li class="<%= $tab eq 'issues' ? 'active' : '' %>"> |
| 125 | 125 |
<a href="<%= url_for("/$user_id/$project_id/issues") %>">
|
| 126 | 126 |
<i class="icon-tasks"></i> |
| 127 |
- Issues <div style="background:#eee;color:#555;display:inline-block;width:18px; height:18px;border-radius:9px;"><%= $api->get_open_issue_count($user_id, $project_id) %></div> |
|
| 127 |
+ Issues <div class="header-issue-count"><%= $api->get_open_issue_count($user_id, $project_id) %></div> |
|
| 128 | 128 |
</a> |
| 129 | 129 |
</li> |
| 130 | 130 |
<li class="<%= $tab eq 'pulls' ? 'active' : '' %>"> |