summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css10
-rw-r--r--ui-shared.c7
2 files changed, 17 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 67cf48e..80680c9 100644
--- a/cgit.css
+++ b/cgit.css
@@ -54,2 +54,3 @@ table.tabs td {
padding: 0px 0.5em;
+ vertical-align: bottom;
}
@@ -66,2 +67,11 @@ table.tabs td a.active {
+table.tabs td.branch {
+ text-align: right;
+}
+
+table.tabs td.branch form {
+ padding-bottom: 2px;
+ font-size: 90%;
+}
+
div.content {
diff --git a/ui-shared.c b/ui-shared.c
index 03d147f..73e3d4c 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -520,2 +520,9 @@ void cgit_print_pageheader(struct cgit_context *ctx)
ctx->qry.sha1);
+ html("</td><td class='branch'>");
+ html("<form method='get' action=''>\n");
+ add_hidden_formfields(0, 1, ctx->qry.page);
+ html("<select name='h' onchange='this.form.submit();'>\n");
+ for_each_branch_ref(print_branch_option, ctx->qry.head);
+ html("</select> ");
+ html("<input type='submit' name='' value='switch'/>");
} else {