Show More
@@ -299,7 +299,12 b'' | |||
|
299 | 299 | margin-top: 7px; |
|
300 | 300 | } |
|
301 | 301 | |
|
302 | .tag, .tagtag, .branchtag, .booktag, .metatag, .perm_tag { | |
|
302 | .summary-tag, | |
|
303 | .summary-tagtag, | |
|
304 | .summary-branchtag, | |
|
305 | .summary-booktag, | |
|
306 | .summary-metatag, | |
|
307 | .summary-perm_tag { | |
|
303 | 308 | background:transparent; |
|
304 | 309 | border: none; |
|
305 | 310 | box-shadow: none; |
@@ -307,9 +312,12 b'' | |||
|
307 | 312 | font-size: 13px; |
|
308 | 313 | } |
|
309 | 314 | |
|
310 |
.tag span, |
|
|
315 | .summary-tag span, | |
|
316 | .summary-tag i, | |
|
317 | .summary-tag a { | |
|
311 | 318 | color: @grey1; |
|
312 | 319 | } |
|
320 | ||
|
313 | 321 | } |
|
314 | 322 | .commit { |
|
315 | 323 | color: @grey1; |
@@ -1,7 +1,7 b'' | |||
|
1 | 1 | <%namespace name="base" file="/base/base.mako"/> |
|
2 | 2 | |
|
3 | 3 | <%def name="refs_counters(branches, closed_branches, tags, bookmarks)"> |
|
4 | <span class="branchtag tag"> | |
|
4 | <span class="summary-branchtag summary-tag"> | |
|
5 | 5 | <a href="${h.route_path('branches_home',repo_name=c.repo_name)}" class="childs"> |
|
6 | 6 | <i class="icon-branch"></i> |
|
7 | 7 | % if len(branches) == 1: |
@@ -13,7 +13,7 b'' | |||
|
13 | 13 | </span> |
|
14 | 14 | |
|
15 | 15 | %if closed_branches: |
|
16 | <span class="branchtag tag"> | |
|
16 | <span class="summary-branchtag summary-tag"> | |
|
17 | 17 | <a href="${h.route_path('branches_home',repo_name=c.repo_name)}" class="childs"> |
|
18 | 18 | <i class="icon-branch"></i> |
|
19 | 19 | % if len(closed_branches) == 1: |
@@ -25,7 +25,7 b'' | |||
|
25 | 25 | </span> |
|
26 | 26 | %endif |
|
27 | 27 | |
|
28 | <span class="tagtag tag"> | |
|
28 | <span class="summary-tagtag summary-tag"> | |
|
29 | 29 | <a href="${h.route_path('tags_home',repo_name=c.repo_name)}" class="childs"> |
|
30 | 30 | <i class="icon-tag"></i> |
|
31 | 31 | % if len(tags) == 1: |
@@ -37,7 +37,7 b'' | |||
|
37 | 37 | </span> |
|
38 | 38 | |
|
39 | 39 | %if bookmarks: |
|
40 | <span class="booktag tag"> | |
|
40 | <span class="summary-booktag summary-tag"> | |
|
41 | 41 | <a href="${h.route_path('bookmarks_home',repo_name=c.repo_name)}" class="childs"> |
|
42 | 42 | <i class="icon-bookmark"></i> |
|
43 | 43 | % if len(bookmarks) == 1: |
@@ -110,7 +110,7 b'' | |||
|
110 | 110 | % endif |
|
111 | 111 | |
|
112 | 112 | ## commits |
|
113 | <span class="tag"> | |
|
113 | <span class="summary-tag"> | |
|
114 | 114 | % if commit_rev == -1: |
|
115 | 115 | <i class="icon-history"></i> |
|
116 | 116 | % if commit_rev == -1: |
@@ -131,7 +131,7 b'' | |||
|
131 | 131 | </span> |
|
132 | 132 | |
|
133 | 133 | ## forks |
|
134 | <span class="tag"> | |
|
134 | <span class="summary-tag"> | |
|
135 | 135 | <a title="${_('Number of Repository Forks')}" href="${h.route_path('repo_forks_show_all', repo_name=c.repo_name)}"> |
|
136 | 136 | <i class="icon-code-fork"></i> |
|
137 | 137 | <span>${c.repository_forks}</span> ${_ungettext('Fork', 'Forks', c.repository_forks)}</a> |
General Comments 0
You need to be logged in to leave comments.
Login now