# HG changeset patch # User domruf # Date 1466791024 -7200 # Node ID 9dfabbf93361c5adb6ae461d30ebbdddb4b3f506 # Parent 9c1fe6f9614650c90687cf08f312b905ff1353f9 changelog: add tags in changelog for bumpedtag, divergenttag, extincttag, unstabletag diff -r 9c1fe6f96146 -r 9dfabbf93361 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Fri Jun 24 19:30:27 2016 +0200 +++ b/kallithea/public/css/style.css Fri Jun 24 19:57:04 2016 +0200 @@ -2680,10 +2680,14 @@ .right .logtags { line-height: 2.2em; } -.repotag, .branchtag, .logtags .tagtag, .logtags .booktag { +.bumpedtag, .divergenttag, .extincttag, .unstabletag, .repotag, .branchtag, .logtags .tagtag, .logtags .booktag { margin: 0px 2px; } +.bumpedtag, +.divergenttag, +.extincttag, +.unstabletag, .repotag, .branchtag, .tagtag, @@ -2698,6 +2702,10 @@ line-height: 1.5em; } +#graph_content .bumpedtag, +#graph_content .divergenttag, +#graph_content .extincttag, +#graph_content .unstabletag, #graph_content .branchtag, #graph_content .tagtag, #graph_content .booktag { @@ -2705,6 +2713,10 @@ margin-right: 0.5em; } +.bumpedtag, +.divergenttag, +.extincttag, +.unstabletag, .repotag, .branchtag, .tagtag, @@ -2712,6 +2724,10 @@ float: left; } +.right .logtags .bumpedtag, +.right .logtags .divergenttag, +.right .logtags .extincttag, +.right .logtags .unstabletag, .right .logtags .branchtag, .right .logtags .tagtag, .right .logtags .booktag, @@ -2752,6 +2768,15 @@ color: #62cffc; } +.bumpedtag, +.divergenttag, +.extincttag, +.unstabletag { + background-color: #f00; + border-color: #600; + color: #fff; +} + .logtags .branchtag a:hover, .logtags .branchtag a, .branchtag a, diff -r 9c1fe6f96146 -r 9dfabbf93361 kallithea/templates/changelog/changelog.html --- a/kallithea/templates/changelog/changelog.html Fri Jun 24 19:30:27 2016 +0200 +++ b/kallithea/templates/changelog/changelog.html Fri Jun 24 19:57:04 2016 +0200 @@ -130,6 +130,26 @@ %endif + %if cs.bumped: +
+ Bumped +
+ %endif + %if cs.divergent: +
+ Divergent +
+ %endif + %if cs.extinct: +
+ Extinct +
+ %endif + %if cs.unstable: +
+ Unstable +
+ %endif %if h.is_hg(c.db_repo_scm_instance): %for book in cs.bookmarks: