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