diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-12-07 21:29:37 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-12-07 21:29:37 +0800 |
commit | 0daef29053ac112e9cd86dc8fac7b78f4f38d387 (patch) | |
tree | 6a8eb7a858520b161a0b16b0431c9b72c2e3c784 /public/ng/less/gogs/issue.less | |
parent | a2f6e1803bb8322843777f1795f8966de81a84c0 (diff) |
add label-create ui elements
Diffstat (limited to 'public/ng/less/gogs/issue.less')
-rw-r--r-- | public/ng/less/gogs/issue.less | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/public/ng/less/gogs/issue.less b/public/ng/less/gogs/issue.less index 15f3a32d..c294d77a 100644 --- a/public/ng/less/gogs/issue.less +++ b/public/ng/less/gogs/issue.less @@ -244,6 +244,7 @@ textarea#issue-add-content { } // new issue button #issue-new, +#label-new, #milestone-new{ > a { padding: 0 !important; @@ -415,6 +416,47 @@ textarea#issue-add-content { border-bottom: 1px dashed #AAA; } } +// label add form +#label-add-form{ + padding: 18px 0; + border-bottom: 1px solid #DDD; + .ipt{ + font-size: 14px; + } + .ipt[name=name]{ + width: 300px; + } + .btn{ + height: 33px; + font-size: 14px; + margin-left: 12px; + } +} +// label color drop +#label-color-drop{ + .ipt{ + width:100px; + } + .drop-down{ + width:128px; + top:22px; + left:50px; + padding: 12px; + line-height: 16px; + a.color{ + width: 16px; + height: 16px; + display: inline-block; + } + } + label{ + width: 24px; + height: 24px; + display: inline-block; + margin: 0 1em; + vertical-align: middle; + } +} // milestone items #milestone-list{ padding-top: 6px; |