diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css
--- a/kallithea/public/css/style.css
+++ b/kallithea/public/css/style.css
@@ -2452,6 +2452,7 @@ BIN_FILENODE = 6
.tagtag,
.booktag {
float: left;
+ display: inline-block;
}
.right .logtags .phasetag,
diff --git a/kallithea/templates/changelog/changelog.html b/kallithea/templates/changelog/changelog.html
--- a/kallithea/templates/changelog/changelog.html
+++ b/kallithea/templates/changelog/changelog.html
@@ -129,46 +129,46 @@ ${self.repo_context_bar('changelog', c.f
%endif
%if cs.bumped:
-
+
Bumped
-
+
%endif
%if cs.divergent:
-
+
Divergent
-
+
%endif
%if cs.extinct:
-
+
Extinct
-
+
%endif
%if cs.unstable:
-
+
Unstable
-
+
%endif
%if cs.phase:
-
+
${cs.phase}
-
+
%endif
%if h.is_hg(c.db_repo_scm_instance):
%for book in cs.bookmarks:
-
+
${h.link_to(book,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
%endif
%for tag in cs.tags:
-
+
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
%if (not c.branch_name) and cs.branch:
-
+
${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
-
+
%endif
diff --git a/kallithea/templates/changelog/changelog_summary_data.html b/kallithea/templates/changelog/changelog_summary_data.html
--- a/kallithea/templates/changelog/changelog_summary_data.html
+++ b/kallithea/templates/changelog/changelog_summary_data.html
@@ -54,20 +54,20 @@
%if h.is_hg(c.db_repo_scm_instance):
%for book in cs.bookmarks:
-
+
${h.link_to(book,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
%endif
%for tag in cs.tags:
-
+
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
%if cs.branch:
-
+
${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
-
+
%endif
|
diff --git a/kallithea/templates/compare/compare_cs.html b/kallithea/templates/compare/compare_cs.html
--- a/kallithea/templates/compare/compare_cs.html
+++ b/kallithea/templates/compare/compare_cs.html
@@ -68,9 +68,9 @@
%for tag in cs.tags:
-
+
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
${h.urlify_text(cs.message, c.repo_name)}
diff --git a/kallithea/templates/pullrequests/pullrequest_show.html b/kallithea/templates/pullrequests/pullrequest_show.html
--- a/kallithea/templates/pullrequests/pullrequest_show.html
+++ b/kallithea/templates/pullrequests/pullrequest_show.html
@@ -200,9 +200,9 @@ ${self.repo_context_bar('showpullrequest
|
%for tag in cs.tags:
-
+
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
-
+
%endfor
${h.urlify_text(cs.message, c.repo_name)}
|