Topic: any way to disable the blacklist icon next to tags?

Posted under General

noticed recently how when viewing a post, there's a little eye icon that basically lets you add stuff to your blacklist when you hover over a tag.

while I can see it being useful, it also prevents me from being able to highlight the tag/artist without copying the whole thing

like say tag I want to highlight is "artist 200" I can't just highlight artist, I have to highlight the whole thing, both highlight and the 200

trying to highlight the space between just makes it act like i'm dragging a link instead

paste the following to your user CSS:

.tag-list-quick-blacklist { display: none; }

while this will remove the link I'm not 100% sure it will solve the full problem you're experiencing.

EDIT: yeah, I don't think it'd be possible to disable the click region for just the tag count (without javascript, at least), unfortunately.

the best I can think to do is add a margin to the left side of the tag so that there's a gap to the left of it (between it and the ? or the +/- buttons), that way you can select the text from there instead:

.tag-list-search { margin-left: .5em; }

not a particularly elegant solution, but I think it's about the best you're going to get for now...

Updated

dba_afish said:
paste the following to your user CSS:

.tag-list-quick-blacklist { display: none; }

while this will remove the link I'm not 100% sure it will solve the full problem you're experiencing.

EDIT: yeah, I don't think it'd be possible to disable the click region for just the tag count (without javascript, at least), unfortunately.

the best I can think to do is add a margin to the left side of the tag so that there's a gap to the left of it (between it and the ? or the +/- buttons), that way you can select the text from there instead:

.tag-list-search { margin-left: .5em; }

not a particularly elegant solution, but I think it's about the best you're going to get for now...

went into settings, into the user CSS as you linked

pasted this

.tag-list-search { margin-left: .5em; }

not quite sure if I did it right or not. since I have to basically click and drag under the artist's name slightly. otherwise, trying to click and drag between the +/- buttons, the game between the - and artist, still treats it like im dragging a link.

I'm not sure if the clicking and dragging slightly underneath the artist's name is because of this, but at least it's something in the meantime.

thanks anyways for trying to help. may be someone else have a better solution or the site gets updated to be able to toggle this feature.

EDIT: apparently, don't know if it needed a minute to actually apply, but now the whole having space between the - and artist is now, you know, there now

so, cheers. this definitely helps out and make it easier.

Updated