From 9533b23272097c538e25692ec91c37f4ea6c0b81 Mon Sep 17 00:00:00 2001 From: FuXiaoHei <fuxiaohei@hexiaz.com> Date: Tue, 18 Mar 2014 13:57:07 +0800 Subject: [PATCH 1/2] theme changes --- public/css/gogs.css | 12 ++++++++++++ templates/repo/nav.tmpl | 8 ++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/public/css/gogs.css b/public/css/gogs.css index 5352f8e397..6bf8246627 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -33,6 +33,10 @@ html, body { margin: 0 .5em; } +.fa-m{ + margin: 0; +} + .list-group .list-group-item { background-color: transparent; } @@ -419,6 +423,10 @@ html, body { padding-top: 20px; } +.gogs-repo-nav .btn-default{ + font-family: Tahoma, Arial, sans-serif; +} + #gogs-repo-watching .dropdown-menu { width: 280px; padding: 0; @@ -530,6 +538,10 @@ html, body { color: #999; } +.popover .repo-clone-div{ + min-width: 200px; +} + /* #gogs-source */ #gogs-source { margin-top: -20px; diff --git a/templates/repo/nav.tmpl b/templates/repo/nav.tmpl index 1f74bc306e..8cbf33c087 100644 --- a/templates/repo/nav.tmpl +++ b/templates/repo/nav.tmpl @@ -7,24 +7,24 @@ {{if not .IsBareRepo}} <div class="col-md-6 actions text-right"> <div class="btn-group" id="gogs-repo-clone"> - <button type="button" class="btn btn-default"><i class="fa fa-download"></i>Clone</button> + <button type="button" class="btn btn-default"><i class="fa fa-download fa-lg fa-m"></i></button> <button type="button" class="btn btn-default dropdown-toggle" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<label>SSH:</label><div class='input-group'><input type='text' class='form-control' value='git@{{AppDomain}}:{{.Owner.LowerName}}/{{.Repository.Name}}.git'></div>" data-html="1"> <span class="caret"></span> </button> </div> <div class="btn-group" id="gogs-repo-watching"> - <button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button> + <button type="button" class="btn btn-default"><i class="fa fa-eye fa-lg fa-m"></i></button> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <div class="dropdown-menu" role="menu"> - <div class="dropdown-item" data-val="not-watching"> + <div class="dropdown-item text-left" data-val="not-watching"> <h4 role="presentation" class="dropdown-header">Not Watching</h4> <p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p> <p class="divider"></p> </div> - <div class="dropdown-item" data-val="watching"> + <div class="dropdown-item text-left" data-val="watching"> <h4 role="presentation" class="dropdown-header">Watching</h4> <p class="description">You receive notifications for all conversations in this repository.</p> </div> From 06af48503cc002d3ab89372c11fc43fc9a5470a8 Mon Sep 17 00:00:00 2001 From: FuXiaoHei <fuxiaohei@hexiaz.com> Date: Wed, 19 Mar 2014 21:00:20 +0800 Subject: [PATCH 2/2] repo description ui update --- public/css/gogs.css | 9 +++++++++ templates/repo/nav.tmpl | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/public/css/gogs.css b/public/css/gogs.css index 168d754be9..328d81e776 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -414,6 +414,15 @@ html, body { height: auto; } +.gogs-repo-nav .name{ + margin-top: 15px; +} + +.gogs-repo-nav .desc{ + color: #888; + margin-bottom: 0; +} + .gogs-repo-nav h3 .fa { color: #BBB; margin-left: 0; diff --git a/templates/repo/nav.tmpl b/templates/repo/nav.tmpl index 8cbf33c087..b67f82d5e3 100644 --- a/templates/repo/nav.tmpl +++ b/templates/repo/nav.tmpl @@ -2,7 +2,8 @@ <div class="container"> <div class="row"> <div class="col-md-6"> - <h3><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3> + <h3 class="name"><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3> + <p class="desc">a sentence to describe the repository.<a href="#">official-site</a></p> </div> {{if not .IsBareRepo}} <div class="col-md-6 actions text-right">