diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-10-15 16:28:38 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-10-15 16:28:38 -0400 |
commit | 1aa12c74523680946dd220b6fc8cbe6d594b5a54 (patch) | |
tree | eb7ddfb18e6f402454ba6bdb9bec0da1f537e464 /public | |
parent | fa241efa6d5e934f599e43714e970fa48c9a0f47 (diff) | |
download | gitea-1aa12c74523680946dd220b6fc8cbe6d594b5a54.tar.gz gitea-1aa12c74523680946dd220b6fc8cbe6d594b5a54.zip |
Fix #572
Diffstat (limited to 'public')
-rw-r--r-- | public/ng/css/gogs.css | 6 | ||||
-rw-r--r-- | public/ng/less/gogs/repository.less | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index 581ec621a7..eb96cb8056 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -1489,6 +1489,12 @@ The register and sign-in page style font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; font-size: 14px; } +.commit-list .message { + width: 60%; +} +.commit-list .message span { + max-width: 500px; +} .diff-head-box { margin-top: 10px; } diff --git a/public/ng/less/gogs/repository.less b/public/ng/less/gogs/repository.less index 8f02fc5846..05e203a774 100644 --- a/public/ng/less/gogs/repository.less +++ b/public/ng/less/gogs/repository.less @@ -523,6 +523,12 @@ font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; font-size: 14px; } + .message { + width: 60%; + span { + max-width: 500px; + } + } } .diff-head-box { margin-top: 10px; |