diff options
author | Norwin <noerw@users.noreply.github.com> | 2021-03-08 17:55:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 18:55:37 +0100 |
commit | f4ce10c6a35b90b8e3943bbb66fa63e731d56e08 (patch) | |
tree | 2572ccdd0e5a1530be054f882d02330c24d319ba /web_src/less | |
parent | f061277c86f7c54749cdc156904ae3658927e48e (diff) | |
download | gitea-f4ce10c6a35b90b8e3943bbb66fa63e731d56e08.tar.gz gitea-f4ce10c6a35b90b8e3943bbb66fa63e731d56e08.zip |
Minor UI fixes (#14926)
* disable fork button when not signed in
* fix commit body styling on PR page
* fixup! fix commit body styling on PR page
Diffstat (limited to 'web_src/less')
-rw-r--r-- | web_src/less/_repository.less | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 7273f5718d..0984dd7cf3 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -2768,12 +2768,17 @@ tbody.commit-list { .commit-body { white-space: pre-wrap; + line-height: initial; } .repository:not(.diff) { - .commit-body { + .commit-body { // commit history list margin: 0; } + + .timeline-item .commit-body { // PR-comment + margin-left: 40px; + } } .git-notes.top { |