diff options
author | HesterG <hestergong@gmail.com> | 2023-02-24 04:28:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 14:28:18 -0600 |
commit | 8ed6096158cb764f2259232eba0a46e6c273354c (patch) | |
tree | aebb7ba018629acf5864a80ed7f25eb9cbf0461f /web_src | |
parent | 659cf30b6932fc2da303d15156f1ece17cd2b309 (diff) | |
download | gitea-8ed6096158cb764f2259232eba0a46e6c273354c.tar.gz gitea-8ed6096158cb764f2259232eba0a46e6c273354c.zip |
Add wrapper to author to avoid long name ui problem (#23030)
This PR is a possible solution for issue #22866. Main change is to add a
`author-wrapper` class around author name, like the wrapper added to
message. The `max-width` is set to 200px on PC, and 100px on mobile
device for now.
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_repository.less | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 627a5f6c2f..83e8e1f338 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -237,6 +237,8 @@ } #repo-files-table { + table-layout: fixed; + thead { th { padding-top: 8px; @@ -2885,7 +2887,8 @@ tbody.commit-list { vertical-align: baseline; } -.message-wrapper { +.message-wrapper, +.author-wrapper { overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 50px); @@ -2893,6 +2896,10 @@ tbody.commit-list { vertical-align: middle; } +.author-wrapper { + max-width: 180px; +} + // in the commit list, messages can wrap so we can use inline .commit-list .message-wrapper { display: inline; @@ -2912,6 +2919,10 @@ tbody.commit-list { display: block; max-width: calc(100vw - 70px); } + + .author-wrapper { + max-width: 80px; + } } @media @mediaMd { @@ -2920,7 +2931,7 @@ tbody.commit-list { } th .message-wrapper { - max-width: 280px; + max-width: 120px; } } @@ -2930,7 +2941,7 @@ tbody.commit-list { } th .message-wrapper { - max-width: 490px; + max-width: 350px; } } @@ -2940,7 +2951,7 @@ tbody.commit-list { } th .message-wrapper { - max-width: 680px; + max-width: 525px; } } |