diff --git a/public/css/gogs.css b/public/css/gogs.css index ed711ba783..a4767c1c8b 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 947643a1a8..fb54d4ef8b 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 42030076d2..8c96607055 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -68,6 +68,8 @@ func Profile(ctx *middleware.Context, params martini.Params) { ctx.Data["Repos"] = repos } + ctx.Data["PageIsUserProfile"] = true // For navbar arrow. + ctx.HTML(200, "user/profile", ctx.Data) } diff --git a/templates/base/navbar.tmpl b/templates/base/navbar.tmpl index 4902ce2593..e0d796a87b 100644 --- a/templates/base/navbar.tmpl +++ b/templates/base/navbar.tmpl @@ -5,10 +5,10 @@ Dashboard Help{{if .IsSigned}} - + user-avatar - + {{else}}Sign in{{end}}