Okay, since issue #1902 got implemented - more good stuff :3
"comment & forum blacklisting"
/*Comment blacklisting*/
/*hide the comments from a specific user*/
article.comment[data-creator="albert"] {display:none;}
/*Or 'white them out' - you will see the blank space, selecting it with mouse will allow to read it.*/
article.comment[data-creator="albert"] *{background:white; color:white; border:none;}
/*Same white-out, but only the text, so you can see the comment author and date.
Additionally, show the text on mouseover*/
article.comment[data-creator="albert"] .content *{background:white; color:white; border:none;}
article.comment[data-creator="albert"] .content:hover *{color:black;}
/*Same things for forum posts*/
/*hide*/
.list-of-forum-posts article[data-creator="albert"] {display:none;}
/*white-out*/
.list-of-forum-posts article[data-creator="albert"] *{background:white; color:white; border:none;}
/*only the text white-out*/
.list-of-forum-posts article[data-creator="albert"] .content *{background:white; color:white; border:none;}
Wypatroszony said:
It only struck me to type it now, it's that not important.
I'd like to request a CSS for "clickable" blacklisted tags on the post page (much like in danbooru 1, what tag(s) is/are being actually blacklisted was/were also hidden, until a click on the number of posts hidden, except I'll be fine with the whole name to be clickable), because I'm not using it to be flaunted what exactly I DON'T want to see is on the page and be explicitly and always informed about that. (I'm not approving any of those by definition.)
Is that possible? Thanks in advance.
If I'm getting this right, you want clickable links in 'blacklisted tags' section to be hidden, but still usable? I'd suggest coloring them white and showing on mouseover, so you won't see them unless you want to:
/*Don't show blacklisted tags until mouseover*/
section#blacklist-box a {color:white;}
section#blacklist-box a:hover {color:#80B9FF;}
Updated