diff options
author | Kyle D <kdumontnu@gmail.com> | 2023-10-09 19:04:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 19:04:31 -0400 |
commit | ac4ae355429e4f06161a7cfba537a5b105b516f0 (patch) | |
tree | cfa712aed6b829b7f3ad9b176ff8f291a651ec4d /web_src | |
parent | e2e0280108cd0cfa4aaa7a875b2c81f17b1352e1 (diff) | |
download | gitea-ac4ae355429e4f06161a7cfba537a5b105b516f0.tar.gz gitea-ac4ae355429e4f06161a7cfba537a5b105b516f0.zip |
Remove max-width and add hide text overflow (#27359)
Closes https://github.com/go-gitea/gitea/issues/27358
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/repo.css | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 8e3448c43a..2ef35ecfdc 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -95,23 +95,10 @@ } .repository .issue-content-right .ui.list .title { - max-width: 200px; overflow: hidden; text-overflow: ellipsis; } -@media (max-width: 1200px) { - .repository .issue-content-right .ui.list .title { - max-width: 150px; - } -} - -@media (max-width: 1000px) { - .repository .issue-content-right .ui.list .title { - max-width: 100px; - } -} - .repository .issue-content-right #deadlineForm input { width: 12.8rem; border-radius: var(--border-radius) 0 0 var(--border-radius); |