diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-07-06 12:27:28 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-08-18 16:38:32 +0200 |
| commit | 60bd8b90f04d5d825fc8ac279cb7fdfde9fe78ea (patch) | |
| tree | 19b2639638e7845597f9aa839eda39a456188a1c /client/simple/src/less/style-rtl.less | |
| parent | adc4361eb919604889dc0661e75ef6ac8cfc4d23 (diff) | |
[enh] theme/simple: custom router
Lay the foundation for loading scripts granularly depending on the endpoint it's
on.
Remove vendor specific prefixes as there are now managed by browserslist and
LightningCSS.
Enabled quite a few rules in Biome that don't come in recommended to better
catch issues and improve consistency.
Related:
- https://github.com/searxng/searxng/pull/5073#discussion_r2256037965
- https://github.com/searxng/searxng/pull/5073#discussion_r2256057100
Diffstat (limited to 'client/simple/src/less/style-rtl.less')
| -rw-r--r-- | client/simple/src/less/style-rtl.less | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/client/simple/src/less/style-rtl.less b/client/simple/src/less/style-rtl.less index 7ac1e6e20..b4b4a946f 100644 --- a/client/simple/src/less/style-rtl.less +++ b/client/simple/src/less/style-rtl.less @@ -129,13 +129,7 @@ } // select HTML element -@supports ( - (background-position-x: 100%) and - ( - (appearance: none) or (-webkit-appearance: none) or - (-moz-appearance: none) - ) -) { +@supports ((background-position-x: 100%) and ((appearance: none))) { select { border-width: 0 0 0 2rem; background-position-x: -2rem; |