diff options
author | 无闻 <joe2010xtmf@163.com> | 2014-07-26 13:55:32 -0400 |
---|---|---|
committer | 无闻 <joe2010xtmf@163.com> | 2014-07-26 13:55:32 -0400 |
commit | 02a81ddb6252d1a08900d548ddb63e41bcb0b8ef (patch) | |
tree | 1ba34cc4cf25001f86aee67962ed1aa9ed0069f0 /public/css | |
parent | 27a51f5bcc928b046b865e24a665b38cbf3e01b5 (diff) | |
parent | 6407caa7610badd817c6691c1b8db60120986fa8 (diff) | |
download | gitea-02a81ddb6252d1a08900d548ddb63e41bcb0b8ef.tar.gz gitea-02a81ddb6252d1a08900d548ddb63e41bcb0b8ef.zip |
Merge pull request #332 from acusti/dev
Styling plus a couple small fixes for issue attachments (& misc cleanup)
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/gogs.css | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 361475bd40..aa6d43894a 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1826,21 +1826,24 @@ body { } #attached { - height: 18px; - margin: 10px 10px 15px 10px; + margin: 10px 0 15px; } #attached-list .label { + display: inline-block; + vertical-align: top; margin-right: 10px; + padding-right: 0; +} + +#attached-list .label .attachment-remove { + cursor: pointer; +} + +#attached-list .label .attachment-remove:hover { + background: #d8d8d8; } #issue-create-form #attached { margin-bottom: 0; } - -#submit-error { - display: none; - padding: 10px 15px 15px 15px; - font-weight: bold; - text-align: center; -}
\ No newline at end of file |