diff --git a/adm/style/manage_pages.html b/adm/style/manage_pages.html
index 8d0100c..9257f01 100644
--- a/adm/style/manage_pages.html
+++ b/adm/style/manage_pages.html
@@ -39,7 +39,7 @@
{{ lang('WARNING') }}
{% if S_EDIT_PAGE %}
- - {{ lang('ACP_PAGES_VIEW') }}
+ - {{ lang('ACP_PAGES_VIEW') }} {{ Icon('font', 'up-right-from-square', '', true) }}
{% endif %}
@@ -110,7 +110,7 @@ {{ lang('WARNING') }}
{{ lang('ACP_PAGES_FORM_ICON_FONT_EXPLAIN', 'https://fontawesome.com/v6/search?o=r&m=free') }}
- -
+ -
{{ lang('ACP_PAGES_FORM_DISPLAY_EXPLAIN') }}
@@ -182,7 +182,7 @@ {{ lang('ACP_PAGES_MANAGE') }}
{{ lang('ACP_PAGES_PRIVATE') }}
{% endif %}
- {{ lang('ACP_PAGES_VIEW') }} |
+ {{ lang('ACP_PAGES_VIEW') }} {{ Icon('font', 'up-right-from-square', '', true) }} |
{{ ICON_EDIT }} {{ ICON_DELETE }} |
{% else %}
diff --git a/adm/style/scripts.js b/adm/style/scripts.js
index 990f66a..f5b7115 100644
--- a/adm/style/scripts.js
+++ b/adm/style/scripts.js
@@ -25,7 +25,7 @@ $(function() {
$('#page_icon_font').on('keyup blur', function() {
var input = $(this).val();
var $icon = $(this).next('i');
- $icon.attr('class', 'icon fa-' + input);
+ $icon.attr('class', 'icon acp-icon fas fa-' + input);
});
});