diff options
Diffstat (limited to 'searx/templates/simple/macros.html')
| -rw-r--r-- | searx/templates/simple/macros.html | 35 |
1 files changed, 7 insertions, 28 deletions
diff --git a/searx/templates/simple/macros.html b/searx/templates/simple/macros.html index d9af3fbbb..7e3c05e5d 100644 --- a/searx/templates/simple/macros.html +++ b/searx/templates/simple/macros.html @@ -52,33 +52,12 @@ </article> {%- endmacro -%} -<!-- --> -{%- macro tabs_open() -%} -<div class="tabs" role="tablist"> -{%- endmacro -%} - -{%- macro tab_header(name, id, label, checked) -%} -<input type="radio" name="{{ name }}" id="tab-{{ id }}" {% if checked is sameas true %}checked="checked"{% endif %} /> -<label id="tab-label-{{ label }}" for="tab-{{ id }}" role="tab" aria-controls="tab-content-{{ id }}">{{ label }}</label> -<section id="tab-content-{{ id }}" role="tabpanel" aria-labelledby="tab-label-{{ label }}" aria-hidden="false"> -{%- endmacro -%} - -{%- macro tab_footer() -%} -</section> -{%- endmacro -%} - -{%- macro tabs_close() -%} -</div> -{%- endmacro -%} - +<!-- input checkbox, on/off slider user can tap--> {%- macro checkbox_onoff(name, checked) -%} - <input type="checkbox" name="{{ name }}" id="{{ name }}" value="None" class="checkbox-onoff" {% if checked %}checked{% endif %} /> -{%- endmacro -%} - -{%- macro checkbox(name, checked, disabled) -%} -{%- if checked == '?' -%} - {{- icon_small('warning') -}} -{%- else -%} - <input type="checkbox"{% if name %} name="{{ name }}"{% endif %} value="None"{% if checked %} checked{% endif %}{% if disabled %} disabled{% endif %} /> -{%- endif -%} + <input type="checkbox" {{- ' ' -}} + name="{{ name }}" {{- ' ' -}} + id="{{ name }}" {{- ' ' -}} + aria-labelledby="pref_{{ name }}"{{- ' ' -}} + class="checkbox-onoff"{{- ' ' -}} + {%- if checked -%} checked{%- endif -%}/> {%- endmacro -%} |