Is it possible to choose to hide the accessibility features on medium and small displays?
Didn't find a setting in the plugin or is this not taken into account at all?
It is rather annoying on small displays such as smartphones and cannot be hidden.
Was this option forgotten in the plugin?
Labels |
Added:
No Code Attached Yet
a11y
|
Is it possible to choose to hide the accessibility features on medium and small displays?
Didn't find a setting in the plugin or is this not taken into account at all?
This requires an adjustment in the .js code, as far as I can tell right now.
It is rather annoying on small displays such as smartphones and cannot be hidden.
Was this option forgotten in the plugin?
This is possible to modify some code in the plugin. Here's a simple setup. But that is of no use to you now.
public function onAfterRender()
{
// Check if mobile
if (Factory::getApplication()->client->mobile) {
return;
}
}
The specified issues are open, but concern other topics, I think ...
But Thanks for your interest!
Labels |
Added:
?
|
@brianteeman For #43143?
Not something I would be prepared to add to the plugin as I consider it bad practice. However the new version will (not implemented yet) allow custom css so you could do it if you really want to.
Related to: #39161 and #39615
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/39860.