Merge branch 'master' of github.com:gogits/gogs
This commit is contained in:
commit
b3de0ded70
2 changed files with 42 additions and 12 deletions
|
@ -336,6 +336,7 @@ body {
|
||||||
#gogs-ssh-form textarea {
|
#gogs-ssh-form textarea {
|
||||||
height: 16em;
|
height: 16em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* #gogs-feed */
|
/* #gogs-feed */
|
||||||
|
|
||||||
#gogs-feed-left {
|
#gogs-feed-left {
|
||||||
|
@ -345,3 +346,34 @@ body {
|
||||||
#gogs-feed-right .repo-panel .panel-heading .btn {
|
#gogs-feed-right .repo-panel .panel-heading .btn {
|
||||||
margin-top: -4px;
|
margin-top: -4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .panel-body {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .list-group {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .list-group-item a {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
padding-left: 0;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .list-group-item .fa {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .list-group-item {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 32px;
|
||||||
|
border-bottom: 1px solid #DDD;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gogs-feed-right .repo-panel .list-group-item:hover {
|
||||||
|
background-color: rgba(65, 131, 196, 0.1);
|
||||||
|
}
|
|
@ -21,10 +21,8 @@
|
||||||
<a class="btn btn-success pull-right btn-sm" href="/repo/create/"><i class="fa fa-plus-square"></i>New Repo</a>
|
<a class="btn btn-success pull-right btn-sm" href="/repo/create/"><i class="fa fa-plus-square"></i>New Repo</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<ul>
|
<ul class="list-group">{{range .MyRepos}}
|
||||||
{{range .MyRepos}}
|
<li class="list-group-item"><i class="fa fa-book"></i><a href="/{{$.SignedUserName}}/{{.Name}}/">{{.Name}}</a></li>{{end}}
|
||||||
<li><a href="#">{{.Name}}</a></li>
|
|
||||||
{{end}}
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue