Additional note:
The active tab is still a link, but it is not clickable as it was. This can be changed via CSS to re-enable the pointer event so it can be clicked again.
If you use a custom CSS for different websites like with the Stylus extension, using this code will re-enable the active sorting tab to be clickable again:
div#sortpostsbuttons .pure-button-primary
{
pointer-events: auto;
}
They had changed the 'pointer-events' attribute for this active link to be 'none' so that it can no longer be clicked. Change it to 'auto' to allow it to return to being clickable.
It was hardcoded in the buttons code and I removed it when I cleaned up the code, but forgot to add it to the CSS.
Fixing it now. Thanks for the report.
I appreciate your efforts. Thank you very much.
(post is archived)