Browse Source

Merge branch 'master' of github.com:gogits/gogs

tags/v1.2.0-rc1
Unknown 11 years ago
parent
commit
a22c4ba71d
4 changed files with 10 additions and 4 deletions
  1. +6
    -2
      public/css/gogs.css
  2. +1
    -0
      routers/repo/repo.go
  3. +1
    -0
      routers/user/user.go
  4. +2
    -2
      templates/base/navbar.tmpl

+ 6
- 2
public/css/gogs.css View File

@@ -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;
}



+ 1
- 0
routers/repo/repo.go View File

@@ -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)


+ 1
- 0
routers/user/user.go View File

@@ -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)
}



+ 2
- 2
templates/base/navbar.tmpl View File

@@ -5,10 +5,10 @@
<a class="gogs-nav-item{{if .PageIsUserDashboard}} active{{end}}" href="/">Dashboard</a>
<a class="gogs-nav-item{{if .PageIsHelp}} active{{end}}" href="/help">Help</a>{{if .IsSigned}}
<a id="gogs-nav-out" class="gogs-nav-item navbar-right navbar-btn btn btn-danger" href="/user/logout/"><i class="fa fa-power-off fa-lg"></i></a>
<a id="gogs-nav-avatar" class="gogs-nav-item navbar-right" href="{{.SignedUser.HomeLink}}" data-toggle="tooltip" data-placement="bottom" title="{{.SignedUserName}}">
<a id="gogs-nav-avatar" class="gogs-nav-item navbar-right{{if .PageIsUserProfile}} active{{end}}" href="{{.SignedUser.HomeLink}}" data-toggle="tooltip" data-placement="bottom" title="{{.SignedUserName}}">
<img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username"/>
</a>
<a class="navbar-right gogs-nav-item" href="/repo/create" data-toggle="tooltip" data-placement="bottom" title="New Repository"><i class="fa fa-plus fa-lg"></i></a>
<a class="navbar-right gogs-nav-item{{if .PageIsNewRepo}} active{{end}}" href="/repo/create" data-toggle="tooltip" data-placement="bottom" title="New Repository"><i class="fa fa-plus fa-lg"></i></a>
<a class="navbar-right gogs-nav-item{{if .PageIsUserSetting}} active{{end}}" href="/user/setting" data-toggle="tooltip" data-placement="bottom" title="Setting"><i class="fa fa-cogs fa-lg"></i></a>
{{else}}<a id="gogs-nav-signin" class="gogs-nav-item navbar-right navbar-btn btn btn-danger" href="/user/login/">Sign in</a>{{end}}
</nav>


Loading…
Cancel
Save