summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-25 21:14:05 +0800
committerFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-25 21:14:05 +0800
commite5d8fe41c4fd8331352c77d8a17d5c035f0787a2 (patch)
tree9d5dd1bc385f462c4c8fa15febef1683d06cbd2d
parent9aba29dd8f067338025593b7c409b494d4b0ce32 (diff)
downloadgitea-e5d8fe41c4fd8331352c77d8a17d5c035f0787a2.tar.gz
gitea-e5d8fe41c4fd8331352c77d8a17d5c035f0787a2.zip
issue create page ui
-rwxr-xr-xpublic/css/gogs.css30
-rw-r--r--public/js/app.js1
-rw-r--r--templates/issue/create.tmpl36
-rw-r--r--templates/repo/toolbar.tmpl5
4 files changed, 68 insertions, 4 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index 74dce472e2..eeead844ae 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -512,6 +512,14 @@ html, body {
height: 39px;
}
+#repo-toolbar .nav .tmp a:hover {
+ text-decoration: none;
+}
+
+#repo-toolbar .nav .tmp .btn {
+ margin-top: -2px;
+}
+
#repo-toolbar .nav .active {
color: #F6F6F6;
}
@@ -602,7 +610,7 @@ html, body {
}
/* #source */
-#source {
+#source, #commits {
margin-top: -20px;
}
@@ -857,7 +865,7 @@ html, body {
}
.guide-box, .diff-head-box {
- margin-top: 20px;
+ margin-top: 4px;
}
.diff-head-box h4 {
@@ -991,6 +999,24 @@ html, body {
color: #AAA;
}
+/* issue */
+
+#issue-create-form .panel-body {
+ padding: 15px 0 0 0;
+}
+
+#issue-create-form .panel-body.form-group, #issue-create-form .tab-pane .form-group {
+ margin-bottom: 0;
+}
+
+#issue-create-form .nav-tabs {
+ margin-bottom: 10px;
+}
+
+#issue-create-form .md-help{
+ margin-top: 6px;
+}
+
/* wrapper and footer */
#wrapper {
diff --git a/public/js/app.js b/public/js/app.js
index 0973398a50..8b0e5cd62c 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -111,6 +111,7 @@ var Gogits = {
};
Gogits.initTabs = function () {
var $tabs = $('[data-init=tabs]');
+ $tabs.tab("show");
$tabs.find("li:eq(0) a").tab("show");
};
// fix dropdown inside click
diff --git a/templates/issue/create.tmpl b/templates/issue/create.tmpl
index 2fb29d1b8b..34c7f40aa3 100644
--- a/templates/issue/create.tmpl
+++ b/templates/issue/create.tmpl
@@ -3,8 +3,40 @@
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="body" class="container">
- <div id="source">
- new-issues
+ <div id="issue">
+ <form class="form" action="#" method="post" id="issue-create-form">
+ <div class="col-md-1">
+ <img class="avatar" src="http://tp2.sinaimg.cn/5068084885/50/40050297589/1" alt=""/>
+ </div>
+ <div class="col-md-8 panel panel-default">
+ <div class="form-group panel-body">
+ <input class="form-control input-lg" type="text" name="title" required="required" placeholder="Title"/>
+ </div>
+ <div class="form-group panel-body">
+ <div class="md-help pull-right"><!-- todo help link -->
+ Content with <a href="#">Markdown</a>
+ </div>
+ <ul class="nav nav-tabs" data-init="tabs">
+ <li class="active"><a href="#issue-textarea" data-toggle="tab">Write</a></li>
+ <li><a href="#issue-preview" data-toggle="tab">Preview</a></li>
+ </ul>
+ <div class="tab-content">
+ <div class="tab-pane" id="issue-textarea">
+ <div class="form-group">
+ <textarea class="form-control" name="content" id="issue-content" rows="10" placeholder="Write some content"></textarea>
+ </div>
+ </div>
+ <div class="tab-pane" id="issue-preview">preview</div>
+ </div>
+ </div>
+ <div class="text-right panel-body">
+ <div class="form-group">
+ <input type="hidden" value="id" name="repo-id"/>
+ <button class="btn-success btn">Create new issue</button>
+ </div>
+ </div>
+ </div>
+ </form>
</div>
</div>
{{template "base/footer" .}} \ No newline at end of file
diff --git a/templates/repo/toolbar.tmpl b/templates/repo/toolbar.tmpl
index 1f8a70984c..17d4e5b1ad 100644
--- a/templates/repo/toolbar.tmpl
+++ b/templates/repo/toolbar.tmpl
@@ -9,6 +9,11 @@
<!-- <li class="{{if .IsRepoToolbarBranches}}active{{end}}"><a href="/{{.RepositoryLink}}/branches">Branches</a></li> -->
<!-- <li class="{{if .IsRepoToolbarPulls}}active{{end}}"><a href="/{{.RepositoryLink}}/pulls">Pull Requests</a></li> -->
<li class="{{if .IsRepoToolbarIssues}}active{{end}}"><a href="/{{.RepositoryLink}}/issues">Issues <!--<span class="badge">42</span>--></a></li>
+ {{if .IsRepoToolbarIssues}}
+ <li class="tmp"><a href="/{{.RepositoryLink}}/issues/new">
+ <button class="btn btn-primary btn-sm">New Issue</button>
+ </a></li>
+ {{end}}
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
<ul class="dropdown-menu">