From 8b864ed11107dcc6ef2780d8536cba1f9c5ff388 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sat, 15 Feb 2025 09:17:21 +0100 Subject: [fix] simple template - video.html fix button icon to icon_small BTW: Rename the manufacturer-specific name ``ion-icon`` of the icon set in SerXNG to ``sxng-icon-set`` --> The icon set can be assembled together as desired in the FE and should therefore not have a manufacturer-specific name in the style and template definitions. Signed-off-by: Markus Heiser --- searx/templates/simple/icons.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'searx/templates/simple/icons.html') diff --git a/searx/templates/simple/icons.html b/searx/templates/simple/icons.html index c6022de09..2ef37dd26 100644 --- a/searx/templates/simple/icons.html +++ b/searx/templates/simple/icons.html @@ -43,13 +43,13 @@ set catalog = { {% macro icon(action, alt) -%} - {{ catalog[action] | replace("__jinja_class_placeholder__", "ion-icon") | safe }} + {{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set") | safe }} {%- endmacro %} {% macro icon_small(action, alt) -%} - {{ catalog[action] | replace("__jinja_class_placeholder__", "ion-icon-small") | safe }} + {{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set-small") | safe }} {%- endmacro %} {% macro icon_big(action, alt) -%} - {{ catalog[action] | replace("__jinja_class_placeholder__", "ion-icon-big") | safe }} + {{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set-big") | safe }} {%- endmacro %} \ No newline at end of file -- cgit v1.2.3