gitea: Install form layout is broken

  • Gitea version (or commit ref): 1.1.0+61-g888dee3
  • Git version: 2.10.1
  • Operating system: Ubuntu 14.04.5 LTS
  • Database (use [x]):
    • PostgreSQL
    • MySQL
    • MSSQL
    • SQLite
  • Can you reproduce the bug at https://try.gitea.io:
    • Yes (provide example URL)
    • No
    • Not relevant
  • Log gist:

Description

I’m installing gitea using this documentation: https://docs.gitea.io/en-us/install-from-source/. Since this commit: https://github.com/go-gitea/gitea/commit/a9de85d31d8ba3ce8801d03e66866e527f5f39d7, the layout on the install form seems broken. If I’am not wrong the fields were previously centred on the page.

Screenshot

screen shot 2017-03-20 at 20 15 08

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 15 (13 by maintainers)

Most upvoted comments

One rule to generate the css exists:

make public/css/index.css

Having a “css” alias sounds good to me, and “test-css” to go with it (invoked as a dependency of “test” so we dont’ have to change Drone).

Note this is similar to what I tried to achieve with #1366, which was also affected by different versions of tooling…

Here is what make think that it was since https://github.com/go-gitea/gitea/commit/a9de85d31d8ba3ce8801d03e66866e527f5f39d7.

$git log --oneline
888dee3 fix delete user failed on sqlite (#1321)
bd8fe49 fix wiki bugs (#1294)
dbabc35 Delete the useless code (#1335)
5586445 LFS: Return 404 for unimplemented endpoints (#1330)
9182a35 Show user OpenID URIs in their profile (#1314)
e158689 Add change-password admin command (#1304)
97ee889 Add captcha support to OpenID based signup
f00a4c8 Gitea OpenID-2.0 login has been tested with livejournal.com too
a9de85d Improve style of user OpenID setting page (#1324)
608cd54 fix gpg wrong column types

Before https://github.com/go-gitea/gitea/commit/a9de85d31d8ba3ce8801d03e66866e527f5f39d7 commit:

$ git checkout 608cd54
$ make generate build
$ ./gitea web

screen shot 2017-03-21 at 19 54 55

After https://github.com/go-gitea/gitea/commit/a9de85d31d8ba3ce8801d03e66866e527f5f39d7 commit:

$ git checkout a9de85d
$ make generate build
$ ./gitea web

screen shot 2017-03-21 at 20 00 11