diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 23:10:22 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 23:10:22 -0700 |
commit | 6146c5293bc44edd3a5797275874b58cd019a4fc (patch) | |
tree | 67164c92ef45836ef4b657fb8a4fdb723ae80f46 /youtube/comments.css | |
parent | a9ea97ad395cd37a97762550d5f4f2573b4759c6 (diff) | |
download | yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.tar.lz yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.tar.xz yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.zip |
Return comments by newest after posting top-level comment
Diffstat (limited to 'youtube/comments.css')
-rw-r--r-- | youtube/comments.css | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube/comments.css b/youtube/comments.css index 599f569..ed1721f 100644 --- a/youtube/comments.css +++ b/youtube/comments.css @@ -1,10 +1,10 @@ .video-metadata{ display: grid; grid-template-columns: auto 1fr; - grid-template-rows: auto 1fr auto; + grid-template-rows: auto auto 1fr auto; } .video-metadata > .video-metadata-thumbnail-box{ - grid-row: 1 / span 2; + grid-row: 1 / span 3; } .video-metadata > .title{ word-wrap:break-word; @@ -14,8 +14,11 @@ grid-row: 2; font-size: 15px; } + .video-metadata > span{ + grid-row:3; + } .video-metadata > hr{ - grid-row: 3; + grid-row: 4; grid-column: 1 / span 2; width: 100%; } |