diff options
author | yp05327 <576951401@qq.com> | 2023-11-08 08:52:08 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 23:52:08 +0000 |
commit | 4a0103fa293cc42075d4a9c10ca4dffa9c2d3a40 (patch) | |
tree | 45e14b4b048369f7d5ae01b4d93d77fc902ce09c /templates | |
parent | 2e6af43a0654e466923a5c046a340d851b7d726c (diff) | |
download | gitea-4a0103fa293cc42075d4a9c10ca4dffa9c2d3a40.tar.gz gitea-4a0103fa293cc42075d4a9c10ca4dffa9c2d3a40.zip |
Add word-break to repo description in home page (#27924)
In #25315, @denyskon fixed UI on mobile view.
But for the repo description, on desktop view there's no word-break.
So maybe we can just add `gt-word-break` to fix it on both mobile view
and desktop view.
Before:
desktop view:
![image](https://github.com/go-gitea/gitea/assets/18380374/a7659f5b-fbe9-400a-8cc2-cca44778556e)
mobile view:
![image](https://github.com/go-gitea/gitea/assets/18380374/611f1b81-58ac-4213-b165-5c73e24ca79e)
After:
desktop view:
![image](https://github.com/go-gitea/gitea/assets/18380374/f21bf3a7-f6aa-457d-9bfa-5c57659c68b1)
mobile view(almost same?)
![image](https://github.com/go-gitea/gitea/assets/18380374/ad2d1a4d-1172-402c-b5fc-5e910657847d)
---------
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/home.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 81b2ba1b0b..d91dc4394e 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -5,7 +5,7 @@ {{template "base/alert" .}} {{template "repo/code/recently_pushed_new_branches" .}} {{if and (not .HideRepoInfo) (not .IsBlame)}} - <div class="ui repo-description"> + <div class="ui repo-description gt-word-break"> <div id="repo-desc" class="gt-font-16"> {{$description := .Repository.DescriptionHTML $.Context}} {{if $description}}<span class="description">{{$description | RenderCodeBlock}}</span>{{else if .IsRepositoryAdmin}}<span class="no-description text-italic">{{ctx.Locale.Tr "repo.no_desc"}}</span>{{end}} |