this post was submitted on 21 Jun 2023
4 points (100.0% liked)

Kbin Userstyles and Userscripts

15 readers
1 users here now

Custom CSS and JS to help improve your Kbin experience! ### Userscripts Greasy Fork ### Stylesheets UserStyles.world ### Userscript managers

founded 1 year ago
 

Hi all, is there a userstyle that highlights the OP in the comments? Whether it's a little tag that says OP or their name is just highlighted somehow? I haven't seen anything but I could've missed it.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago

I have this logic in my theme, if you just want the code snippet, I will post it below

    .own.author > header > .user-inline::after{
        content:" OP ";
        color: white;
        background-color:#111;
        margin-left: 3px
    }