diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-26 21:47:20 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-26 21:47:20 +0800 |
commit | 08405a4fea1d2e5c73a73dafd866e0c00c7749c2 (patch) | |
tree | c7410071ee1e4767967e422daeba0e7a564d93b3 /public | |
parent | 0b22d90b7c936a7be4dd4c8e53b1af190aefe649 (diff) | |
download | gitea-08405a4fea1d2e5c73a73dafd866e0c00c7749c2.tar.gz gitea-08405a4fea1d2e5c73a73dafd866e0c00c7749c2.zip |
add issue view ui
Diffstat (limited to 'public')
-rwxr-xr-x | public/css/gogs.css | 73 |
1 files changed, 71 insertions, 2 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 6bf698e8b1..6d498e0e65 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1014,11 +1014,11 @@ html, body { margin-bottom: 0; } -#issue-create-form .nav-tabs { +#issue-create-form .nav-tabs, #issue .issue-reply .nav-tabs { margin-bottom: 10px; } -#issue-create-form .md-help { +#issue .md-help { margin-top: 6px; } @@ -1095,6 +1095,75 @@ html, body { vertical-align: top; } +#issue .issue-whole .title { + margin-top: 0; + font-size: 28px; +} + +#issue .issue-whole .number { + font-size: 26px; + color: #AAA; +} + +#issue .issue-head .author .avatar { + width: 48px; + height: 48px; + margin-right: 16px; +} + +#issue .issue-head .info { + width: 99%; + margin-top: 10px; + padding-left: 64px; + margin-bottom: 16px; + padding-bottom: 20px; + border-bottom: 1px solid #CCC; +} + +#issue .issue-head .status { + font-size: 16px; + font-weight: bold; + padding: 6px 18px; + border-radius: 3px; +} + +#issue .issue-head a.author { + margin-left: .6em; + color: #444; +} + +#issue .issue-main { + padding-left: 0; +} + +#issue .issue-content { + border-bottom-width: 1px; +} + +#issue .issue-child .user .avatar { + width: 42px; + height: 42px; + margin-right: 12px; +} + +#issue .issue-child .issue-content { + margin-left: 56px; +} + +#issue .issue-child .panel-heading { + padding-top: 10px; + padding-bottom: 10px; + font-weight: normal; +} + +#issue .issue-child .panel-heading .user { + font-weight: bold; +} + +#issue .issue-line { + border-color: #CCC; +} + /* wrapper and footer */ #wrapper { |