diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-12-22 21:26:05 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-12-22 21:26:05 +0800 |
commit | c0cfd62b9007122f78f28f4dbbe3c3eeeee5b02b (patch) | |
tree | 81e29f747e650a554a43a971420e453c6a92ca16 /public/ng/less/gogs/issue.less | |
parent | ebbe6177a91e9eb6b4001342728ff099cafd5d65 (diff) | |
download | gitea-c0cfd62b9007122f78f28f4dbbe3c3eeeee5b02b.tar.gz gitea-c0cfd62b9007122f78f28f4dbbe3c3eeeee5b02b.zip |
add label-edit and label-delete logic
Diffstat (limited to 'public/ng/less/gogs/issue.less')
-rw-r--r-- | public/ng/less/gogs/issue.less | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/public/ng/less/gogs/issue.less b/public/ng/less/gogs/issue.less index c294d77a49..b950869cda 100644 --- a/public/ng/less/gogs/issue.less +++ b/public/ng/less/gogs/issue.less @@ -384,7 +384,7 @@ textarea#issue-add-content { } // labels list #label-list { - .right { + a.right { margin-left: 1em; color: #999; i { @@ -416,10 +416,10 @@ textarea#issue-add-content { border-bottom: 1px dashed #AAA; } } -// label add form -#label-add-form{ - padding: 18px 0; - border-bottom: 1px solid #DDD; +// label add form, label edit form +#label-add-form, +#label-edit-form, +#label-delete-form{ .ipt{ font-size: 14px; } @@ -432,15 +432,24 @@ textarea#issue-add-content { margin-left: 12px; } } +#label-add-form{ + padding: 18px 0; + border-bottom: 1px solid #DDD; +} +#label-delete-form{ + span{ + line-height: 33px; + } +} // label color drop -#label-color-drop{ +.label-color-drop{ .ipt{ width:100px; } .drop-down{ - width:128px; - top:22px; - left:50px; + width:128px !important; + top:22px !important; + left:50px !important; padding: 12px; line-height: 16px; a.color{ |