diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-21 00:27:06 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-21 00:27:06 -0500 |
commit | 4bcb27554592b292d3e116f42c468f62ac51b917 (patch) | |
tree | bd349c438213e63f022bfb014e5f49746592c547 /youtube | |
parent | 574cb2dae8534a8abba5710217e4f6c8655ff854 (diff) | |
download | yt-local-4bcb27554592b292d3e116f42c468f62ac51b917.tar.lz yt-local-4bcb27554592b292d3e116f42c468f62ac51b917.tar.xz yt-local-4bcb27554592b292d3e116f42c468f62ac51b917.zip |
Prevent text overflow in comments
Diffstat (limited to 'youtube')
-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 697961d..1769d49 100644 --- a/youtube/static/watch.css +++ b/youtube/static/watch.css @@ -522,7 +522,11 @@ label[for=options-toggle-cbox] { .author-avatar { grid-area: author-avatar; } .author-name { grid-area: author-name; } .permalink { grid-area: permalink; } -.comment-text { grid-area: comment-text; } +.comment-text { + grid-area: comment-text; + overflow: hidden; + text-overflow: ellipsis; +} .comment-likes { grid-area: comment-likes; } .button-row { grid-area: button-row; } |