From 1370797be8b0056149ba9fb461990d3902e557cb Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Sat, 10 Feb 2024 08:57:46 -0500 Subject: [PATCH] css: bring back arrows, display replies as table - setting display: table on replies makes them reflow the same way as 4chan, where the reply will be right up against the OP body, and the OP image can actually extend down past the top of the reply. --- stylesheets/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index d89d0cc9..b44381e7 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -1,7 +1,12 @@ /*Lainchan*/ -div.sidearrows{ +div.sidearrows { display:none; + color: #b7c5d9; + float: left; + margin-right: 2px; + margin-top: 0; + margin-left: 2px; } img { @@ -525,7 +530,7 @@ div.post.reply { border-width: 1px; border-style: none solid solid none; border-color: #B7C5D9; - display: inline-block; + display: table; max-width: 94%!important; }