diff --git a/public/css/gogs.css b/public/css/gogs.css
index ed711ba78..a4767c1c8 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -119,6 +119,10 @@ html, body {
bottom: -4px !important;
}
+#gogs-nav-avatar:after {
+ bottom: -4px !important;
+}
+
.gogs-nav .tooltip {
border: none;
}
@@ -712,11 +716,11 @@ html, body {
vertical-align: top;
}
-.commit-box .search{
+.commit-box .search {
margin-top: 3px;
}
-.commit-box td{
+.commit-box td {
background-color: #FFF;
}
diff --git a/routers/repo/repo.go b/routers/repo/repo.go
index 947643a1a..fb54d4ef8 100644
--- a/routers/repo/repo.go
+++ b/routers/repo/repo.go
@@ -15,6 +15,7 @@ func Create(ctx *middleware.Context, form auth.CreateRepoForm) {
ctx.Data["Title"] = "Create repository"
if ctx.Req.Method == "GET" {
+ ctx.Data["PageIsNewRepo"] = true // For navbar arrow.
ctx.Data["LanguageIgns"] = models.LanguageIgns
ctx.Data["Licenses"] = models.Licenses
ctx.HTML(200, "repo/create", ctx.Data)
diff --git a/routers/user/user.go b/routers/user/user.go
index 52b75f661..da70ced9f 100644
--- a/routers/user/user.go
+++ b/routers/user/user.go
@@ -69,6 +69,7 @@ func Profile(ctx *middleware.Context, params martini.Params) {
ctx.Data["Repos"] = repos
}
+ ctx.Data["PageIsUserProfile"] = true
ctx.HTML(200, "user/profile", ctx.Data)
}
diff --git a/templates/base/navbar.tmpl b/templates/base/navbar.tmpl
index 4902ce259..e0d796a87 100644
--- a/templates/base/navbar.tmpl
+++ b/templates/base/navbar.tmpl
@@ -5,10 +5,10 @@
Dashboard
Help{{if .IsSigned}}
-
+
-
+
{{else}}Sign in{{end}}