diff options
author | Maxim Slipenko <no-reply@maxim.slipenko.com> | 2023-08-07 23:44:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-07 22:44:04 +0200 |
commit | c2b6897e35ccdebc4b49cfc7fb165ee654c8e55d (patch) | |
tree | 77375a7329194ffb8e425be98fa140a17e2b13d2 /web_src/css/base.css | |
parent | 3a42743b3afbb56209364f77b887b6b0499062cb (diff) | |
download | gitea-c2b6897e35ccdebc4b49cfc7fb165ee654c8e55d.tar.gz gitea-c2b6897e35ccdebc4b49cfc7fb165ee654c8e55d.zip |
Fix text truncate (#26354)
Fixes: https://github.com/go-gitea/gitea/issues/25597
Before:
![image](https://github.com/go-gitea/gitea/assets/36362599/c8c27bcb-469f-4def-8521-d9e054c16ecb)
After:
![image](https://github.com/go-gitea/gitea/assets/36362599/2405b6e8-fc5c-4b13-b66b-007bc11edbc4)
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/css/base.css')
-rw-r--r-- | web_src/css/base.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/css/base.css b/web_src/css/base.css index 213f3f88f2..d44f949318 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -1218,7 +1218,7 @@ img.ui.avatar, } .ui .text.truncate { - overflow: hidden; + overflow-x: clip; text-overflow: ellipsis; white-space: nowrap; display: inline-block; |