diff options
author | A.J. Ruckman <40143425+ajruckman@users.noreply.github.com> | 2018-11-08 17:51:57 -0500 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2018-11-08 17:51:56 -0500 |
commit | f4630f9044a2d00abb4cf20902ea37b99ffff64d (patch) | |
tree | c74ff05a232ad052b7b6319aee9dd54037246367 /public | |
parent | dae311ea9d654b1510a64fd5a2d21e25c2b65529 (diff) |
public/css: add 'overflow-wrap: break-word' to dashboard news feeds (#5507)
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 1 | ||||
-rw-r--r-- | public/less/_dashboard.less | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 83f0f33c..58927879 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -3034,6 +3034,7 @@ footer .ui.language .menu { } .feeds .news p { line-height: 1em; + overflow-wrap: break-word; } .feeds .news .time-since { font-size: 13px; diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index f00a271a..240dbd62 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -61,6 +61,7 @@ } p { line-height: 1em; + overflow-wrap: break-word; } .time-since { font-size: 13px; |