-Reduces width of comment section to 900px max, down from 100% of browser window width.
FunnyJunk - Centered Comments by alkarnur
Details
Authoralkarnur
LicenseNo License
CategoryFunnyjunk
Created
Updated
Size4.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name FunnyJunk - Centered Comments
@version 20220608.07.28
@namespace userstyles.world/user/alkarnur
@description -Reduces width of comment section to 900px max, down from 100% of browser window width.
-Slightly increases minimum height of individual comments from easier screencapping.
-Highlights Argentina flag with red border.
-Hides block tags.
@author alkarnur
@license No License
==/UserStyle== */
/* ==UserStyle==
@name FunnyJunk - Centered Comments
@version 20220608.07.28
@namespace userstyles.world/user/alkarnur
@description -Reduces width of comment section to 900px max, down from 100% of browser window width.
-Slightly increases minimum height of individual comments from easier screencapping.
-Highlights Argentina flag with red border.
-Hides block tags.
@author alkarnur
@license No License
==/UserStyle== */
@-moz-document domain("funnyjunk.com") {
/* Increase single comment height for easy screenshot capture on Firefox */
.com {
min-height: 70px;
}
/* Decrease width of commment section from 100% of browser window width to 900px, which is the width of the post above, for better legibility */
#commentsList {
margin: auto;
/* width: 60%; */
max-width: 900px;
}
.il {
border: 1px solid red;
}
/* Argentina, Honduras, Nicaragua, El Salvador */
.ar, .hn, .ni, .sv {
border: 1px solid green;
}
/* Highlight Moderators */
.kp {
border: 1px solid orange;
}
/* Hide paid subscription / support nag box */
/* html.minimized body.extendedSB nav#wrapper.static.non-logged section#content.collapsed section#contentRight.cRight.collapsed article#contentDetail.main div#ctFooter a:last-of-type {
display:none;
} */
#ctFooter a:last-of-type {
display: none;
}
/* Bring back Vote link unintentionally hidden by rule for hiding subscription nag message*/
#whoThumbed, #voteInfo {
display: block !important;
}
/* #voteInfo {
display: block !important;
}
*/
/* Show back the channel links in the footer of the post section */
html.minimized body.extendedSB nav#wrapper.static.non-logged section#content.collapsed section#contentRight.cRight.collapsed article#contentDetail.main div#ctFooter div#ctInfo div#chanControls div div div.chanBs.chanBs2 a.chHead2 {
display:inline;
}
/* Make small text comment font same as regular comment font size */
.mrkd_fontsmall {
font-size: 13.5px;
}
/* Make comment (in Your Posts window dialog) thumb green color brighter */
#commentsList_mp .cl_th {
color: #0f0 !important;
}
/* Hide political posts */
/* div#contentNoChannel div#blockD {
background-color: black;
height: 900px;
width: 900px;
margin-left: -380px;
z-index: 20;
} */
/* Hide red-thumb-farming trolls' comment text */
/* .retard > div,
.retard > div > div {
color: rgba(255,255,255,0.25) !important;
}
.retard > div:hover,
.retard > div > div:hover,
.retard:hover > div,
.retard:hover > div > div,
.retard > div:hover > div
{
color: rgba(255,255,255,1) !important;
} */
/* Re-show my comments when I go to them from the 'Your Posts' box */
.selected_com > div,
.selected_com > div > div {
color: rgba(255,255,255,1) !important;
}
/* Hide distracting block warning tags */
.blockInfo {
/* display: none; */
opacity: 0.25;
}
/* Hide the entire comment that has a block warning tag, but leave a blank space in its place */
.response:has(.blockInfo) {
display: none;
}
/* Hide Unblock and Blocks buttons */
#blockD, #tapContent, #acb1, #acb2 {
display: none !important;
}
/* Hide text of comment of users who you blocked */
/* .blockInfo {
color: rgba(0,0,0,0) !important;
position: absolute;
width: 800px;
height: 90px !important;
z-index: 50;
background: #111;
margin: 0px;
border: 0px;
} */
/* Hide Your Posts link from top bar / menu */
[title="Your Posts"] {
display: none;
}
}