diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-30 00:04:41 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-30 00:04:41 -0500 |
commit | 056c3be3f2ab9a19d8b2c38396826aaad9d4081d (patch) | |
tree | 248bb34a95fab6377c6205abc12d032934e28025 /youtube/static | |
parent | 0a9d24b2614a8cd814d2fffc5f254034245f6496 (diff) | |
download | yt-local-056c3be3f2ab9a19d8b2c38396826aaad9d4081d.tar.lz yt-local-056c3be3f2ab9a19d8b2c38396826aaad9d4081d.tar.xz yt-local-056c3be3f2ab9a19d8b2c38396826aaad9d4081d.zip |
strip_non_ascii in comments-author-name
Diffstat (limited to 'youtube/static')
-rw-r--r-- | youtube/static/watch.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube/static/watch.css b/youtube/static/watch.css index e448e39..3f1b7cf 100644 --- a/youtube/static/watch.css +++ b/youtube/static/watch.css @@ -520,7 +520,11 @@ label[for=options-toggle-cbox] { } .author-avatar { grid-area: author-avatar; } -.author-name { grid-area: author-name; } +.author-name { + grid-area: author-name; + overflow: hidden; + text-overflow: ellipsis; +} .permalink { grid-area: permalink; } .comment-text { grid-area: comment-text; |