• Hey, guest user. Hope you're enjoying NeoGAF! Have you considered registering for an account? Come join us and add your take to the daily discourse.

quick question about Neogaf css?

ksdixon

Member
On a self post, your username box is a lighter grey color than the posts of others. How can I isolate that CSS and change it into a different color with a userscript, so that I can more easily see when I reach my own post as I scroll-down a thread's page?

Code:
.message-inner > .message-cell--user.message-cell { background-color: green !important;}
doesn't work, for example.
 

ksdixon

Member
got another help request, if anyone can help?

how can i automatically remove the blur effect for spoilers? any attempts I've made just remove the entire paragraph of spoilered text. maybe there's CCS code that could remove the blurr effect and change the spoiler text color to red, or something like that?
 

ksdixon

Member
oh, here's something...

you know the weird pop-out "slide" thing that happens when you click on an image?

ib3RCPz.png


is there a way to remove that?

e.g. instead of clicking on the above image loading:

Code:
https://www.neogaf.com/threads/quick-question-about-neogaf-css.1549908/#lg=_xfUid-1-1592740890&slide=0

force it to load the source image instead:

Code:
https://i.imgur.com/ib3RCPz.png
 
Last edited:

digital haze

Neo Member
For in-line spoilers:
Code:
.bbCodeInlineSpoiler {
    color: inherit !important;
    background: transparent !important;
    text-shadow: none;
}

Regarding the images, you'd need to inject javascript to do that. Alternatively, you can enable right click menu to open in a new tab if you pass through the click on the element that makes it zoom:

.lbContainer-zoomer {pointer-events: none;}
 

ksdixon

Member
For in-line spoilers:
Code:
.bbCodeInlineSpoiler {
    color: inherit !important;
    background: transparent !important;
    text-shadow: none;
}

Regarding the images, you'd need to inject javascript to do that. Alternatively, you can enable right click menu to open in a new tab if you pass through the click on the element that makes it zoom:

.lbContainer-zoomer {pointer-events: none;}

awesome, thanks man :)
 
Top Bottom