Someone at searxng decided it would be a good idea to set display:none;
on the radio input [the convoluted settings tab implementation]. This overrides that.
Enable searxng preferences for keyboard by banaanihillo
Details
Authorbanaanihillo
LicenseNo License
CategoryGPL-3.0-or-later
Created
Updated
Size401 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name enableSearxngPreferences
@version 2024-10-22
@namespace userstyles.world
@description Re-enable keyboard navigation for searxng preferences
@author banaanihillo
@license GPL-3.0-or-later
==/UserStyle== */
@-moz-document domain("search.citw.lgbt"),
domain("searx.be") {
.tabs > input[type="radio"] {
display: initial !important;
}
}