diff --git a/4chan_x.user.js b/4chan_x.user.js index 159756ddc..fe33ea8f6 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4851,13 +4851,19 @@ textarea.field {\ .inlined {\ opacity: .5;\ }\ -.inline .post {\ +.inline {\ background-color: rgba(255, 255, 255, 0.15);\ border: 1px solid rgba(128, 128, 128, 0.5);\ display: table;\ margin: 2px;\ padding: 2px;\ }\ +.inline .post {\ + background: none;\ + border: none;\ + margin: 0;\ + padding: 0;\ +}\ div.opContainer {\ display: block !important;\ }\ diff --git a/script.coffee b/script.coffee index b42b6f01f..abc0dc8bb 100644 --- a/script.coffee +++ b/script.coffee @@ -3817,13 +3817,19 @@ textarea.field { .inlined { opacity: .5; } -.inline .post { +.inline { background-color: rgba(255, 255, 255, 0.15); border: 1px solid rgba(128, 128, 128, 0.5); display: table; margin: 2px; padding: 2px; } +.inline .post { + background: none; + border: none; + margin: 0; + padding: 0; +} div.opContainer { display: block !important; }