summaryrefslogtreecommitdiff
path: root/searx/templates/simple/elements/apis.html
diff options
context:
space:
mode:
authormrpaulblack <paul@paulgo.io>2023-05-28 00:37:25 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2023-05-28 12:19:32 +0200
commitf087959b02d812651f5dcec30c84daacb08f27c0 (patch)
treee5d3338b1fbb319b7601968c8ad5b2ce04bafb01 /searx/templates/simple/elements/apis.html
parentb7e315563d2401e6fb659fcfcb361e6d5bb915d5 (diff)
[mod] simple theme: build design for details (collapsables)
* set border top and bottom on sidebar collasables * inrease peading on summary so its easier to click on mobile * remove margins and add flex wrapper to normalize elements in sidebar
Diffstat (limited to 'searx/templates/simple/elements/apis.html')
-rw-r--r--searx/templates/simple/elements/apis.html42
1 files changed, 22 insertions, 20 deletions
diff --git a/searx/templates/simple/elements/apis.html b/searx/templates/simple/elements/apis.html
index c3bc76726..5c7a07110 100644
--- a/searx/templates/simple/elements/apis.html
+++ b/searx/templates/simple/elements/apis.html
@@ -1,24 +1,26 @@
<div id="apis" role="complementary" aria-labelledby="apis-title">
- <details>
+ <details class="sidebar-collapsable">
<summary class="title" id="apis-title">{{ _('Download results') }}</summary>
- {%- for output_type in search_formats -%}
- <div class="left">
- <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
- <input type="hidden" name="q" value="{{ q|e }}">
- {%- for category in selected_categories -%}
- <input type="hidden" name="category_{{ category }}" value="1">
- {%- endfor -%}
- <input type="hidden" name="pageno" value="{{ pageno }}">
- <input type="hidden" name="language" value="{{ current_language }}">
- <input type="hidden" name="time_range" value="{{ time_range }}">
- <input type="hidden" name="safesearch" value="{{ safesearch }}">
- <input type="hidden" name="format" value="{{ output_type }}">
- {%- if timeout_limit -%}
- <input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >
- {%- endif -%}
- <input type="submit" role="link" value="{{ output_type }}">
- </form>
- </div>
- {%- endfor -%}
+ <div class="wrapper">
+ {%- for output_type in search_formats -%}
+ <div class="left">
+ <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
+ <input type="hidden" name="q" value="{{ q|e }}">
+ {%- for category in selected_categories -%}
+ <input type="hidden" name="category_{{ category }}" value="1">
+ {%- endfor -%}
+ <input type="hidden" name="pageno" value="{{ pageno }}">
+ <input type="hidden" name="language" value="{{ current_language }}">
+ <input type="hidden" name="time_range" value="{{ time_range }}">
+ <input type="hidden" name="safesearch" value="{{ safesearch }}">
+ <input type="hidden" name="format" value="{{ output_type }}">
+ {%- if timeout_limit -%}
+ <input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >
+ {%- endif -%}
+ <input type="submit" role="link" value="{{ output_type }}">
+ </form>
+ </div>
+ {%- endfor -%}
+ </div>
</details>
</div>