TuxedoTako / 4chan-xt

Adds various features to anonymous imageboards.
Other
110 stars 8 forks source link

Feature request - Option to remove options from Quick Reply #46

Closed dpython closed 3 months ago

dpython commented 5 months ago

I'd like to be able to disable the edit in tegaki, Post from URL, and dump list posting options from the quick reply if possible.

I like to post from tabbing to the submit button but those other posting options in the quick reply make it kind of annoying to do, having to tab over them first.

Is there a way to remove those options from the quick reply window?

TuxedoTako commented 5 months ago

You can hide them with CSS, that way they aren't keyboard focusable.

#qr-oekaki-button,
#dump-button,
#url-button {
    display: none !important;
}
dpython commented 5 months ago

Oh nice, Thanks!