diff options
author | silverwind <me@silverwind.io> | 2019-06-14 03:32:14 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-06-14 09:32:13 +0800 |
commit | 9ce4d89e9922cc87bdb13d122339ae165a080c3d (patch) | |
tree | 3391c41124b5ee12ae9b1076ef147d48b0429124 /Makefile | |
parent | 2f39fc7bb6a17b4637b723026a2e18dafd1a0adb (diff) | |
download | gitea-9ce4d89e9922cc87bdb13d122339ae165a080c3d.tar.gz gitea-9ce4d89e9922cc87bdb13d122339ae165a080c3d.zip |
UI: Fix overflow issues in repo (#7190)
- Fix layout overflow in repo file list.
- Fix invisible status icon in file view and commit list. In file view,
the icon was moved to the left because I could not figure out a proper
fix because of HTML tables.
- Added title attribute to commit messages.
- Fixed two CSS linter warnings in existing CSS.
- Fixed CI variable check in 'make css'.
Fixes: https://github.com/go-gitea/gitea/issues/7180
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -395,7 +395,7 @@ css: npx postcss --use autoprefixer --no-map --replace public/css/* @diff=$$(git diff public/css/*); \ - if ([ ! -z "$CI" ] && [ -n "$$diff" ]); then \ + if ([ -n "$$CI" ] && [ -n "$$diff" ]); then \ echo "Generated files in public/css have changed, please commit the result:"; \ echo "$${diff}"; \ exit 1; \ |