diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-08-01 00:06:19 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-08-01 00:06:19 -0400 |
commit | dabf5b057c358655d8635ed6ec8666660abeb92b (patch) | |
tree | 7f87b42eef48d6d0ac3f52bcbf856f4c5439551c /public/ng/css | |
parent | 7bbf644dd5eaca77c3e8df57419180486bda0fc2 (diff) | |
download | gitea-dabf5b057c358655d8635ed6ec8666660abeb92b.tar.gz gitea-dabf5b057c358655d8635ed6ec8666660abeb92b.zip |
Finish new migrate page
Diffstat (limited to 'public/ng/css')
-rw-r--r-- | public/ng/css/gogs.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index 2b8f57608f..b9eea52d25 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -294,6 +294,8 @@ img.avatar-30 { border: 1px solid #ddd; border-radius: .25em; margin: 5px 0; + padding: 10px; + background-color: #f8f8f8; } .markdown > pre.linenums { padding: 0; @@ -836,6 +838,9 @@ The register and sign-in page style margin-left: -15px; } /* repository main */ +#repo-wrapper { + padding-bottom: 100px; +} #repo-header { height: 69px; border-bottom: 1px solid #d6d6d6; @@ -1100,29 +1105,36 @@ The register and sign-in page style width: 520px; } /* repository create */ +#repo-migrate-form, #repo-create-form { width: 800px; - margin: 60px auto 150px auto; + margin: 60px auto auto auto; background: white; } +#repo-migrate-form h2, #repo-create-form h2 { margin: .5em 1em; } +#repo-migrate-form .field, #repo-create-form .field { margin: 1.2em 0 2em 0; } +#repo-migrate-form .ipt, #repo-create-form .ipt { width: 540px; } +#repo-migrate-form textarea, #repo-create-form textarea { height: 120px; } +#repo-migrate-form .avatar, #repo-create-form .avatar { vertical-align: middle; margin-right: .6em; width: 28px; height: 28px; } +#repo-migrate-form:hover, #repo-create-form:hover { box-shadow: 0px 0px 6px #CCC; } |