diff options
author | Unknwon <u@gogs.io> | 2019-11-07 11:18:21 -0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2019-11-07 11:18:21 -0800 |
commit | 53d30ccde92f7891cf8691d18f109e28ea81d15c (patch) | |
tree | d3f25dbea507bac989e7209f08541b1ca91618ba /public/css/gogs.css | |
parent | 7d9f408d3acc2fce65021d6e6a78df3b44e7b73d (diff) |
templates: fix line wrap for very long commit message
Diffstat (limited to 'public/css/gogs.css')
-rw-r--r-- | public/css/gogs.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 0b866b85..6f4665b6 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2066,6 +2066,9 @@ footer .ui.language .menu { .repository .filter.dropdown .menu { margin-top: 1px!important; } +.repository.diff .commit-message pre { + white-space: pre-wrap; +} .repository.commits .header .ui.right .search input { font-weight: normal; padding: 5px 10px; |