]> source.dussan.org Git - gitea.git/commitdiff
top nav arrow update
authorFuXiaoHei <fuxiaohei@hexiaz.com>
Wed, 19 Mar 2014 14:15:28 +0000 (22:15 +0800)
committerFuXiaoHei <fuxiaohei@hexiaz.com>
Wed, 19 Mar 2014 14:15:28 +0000 (22:15 +0800)
public/css/gogs.css
routers/repo/repo.go
routers/user/user.go
templates/base/navbar.tmpl

index ed711ba783d382b99426ddc7705a94179e0ef1b3..a4767c1c8bfcf888efe74c384b41d3ab0ab60c49 100755 (executable)
@@ -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;
 }
 
index 947643a1a805b59a7e9662433d4bb4a4777eaa27..fb54d4ef8ba9fc03258982385945403b7b0a75fb 100644 (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)
index 42030076d230b2e0d0e93dc2b7c130628c831699..8c96607055cdee283044a4165585e851b8724e9a 100644 (file)
@@ -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)
 }
 
index 4902ce2593cec23b0e7f7be3885fe018140398f7..e0d796a87bb09872dcc18dffb21906ac201c3a3a 100644 (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>