diff options
author | Unknwon <u@gogs.io> | 2017-02-19 13:18:16 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-19 13:18:16 -0500 |
commit | 7de71333c655722c35a3e3e25e7769c0b292e27c (patch) | |
tree | 2de51200dd396545b114838d45fa4884f83f2c0e /public | |
parent | cd9b29ff3fe50396f3525bf03bce9f9f9556a2f6 (diff) |
repo: several minor improvements
1. Fix sample content didn't show up when hook doesn't exist.
2. Fix CSS 'word-break' to use 'break-word' not 'break-all'.
3. Fix single quote in 'locale_en-US.ini' file.
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 2 | ||||
-rw-r--r-- | public/less/_form.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 5cccce31..2b044a92 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -910,7 +910,7 @@ footer .ui.language .menu { padding-top: .6em; padding-bottom: .6em; display: inline-block; - word-break: break-all; + word-break: break-word; } .ui.attached.header { background: #f0f0f0; diff --git a/public/less/_form.less b/public/less/_form.less index 88ab7d00..120d31bf 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -4,7 +4,7 @@ padding-top: .6em; padding-bottom: .6em; display: inline-block; - word-break: break-all; + word-break: break-word; } } .ui.attached.header { |