diff --git a/phpBB/styles/prosilver/imgs/svg/arrow-right-bold.svg b/phpBB/styles/prosilver/imgs/svg/arrow-right-bold.svg new file mode 100644 index 0000000000..6a11c99a46 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/arrow-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/comment-text-outline.svg b/phpBB/styles/prosilver/imgs/svg/comment-text-outline.svg new file mode 100644 index 0000000000..3ef94094f3 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/comment-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/file-document-box-multiple-outline.svg b/phpBB/styles/prosilver/imgs/svg/file-document-box-multiple-outline.svg new file mode 100644 index 0000000000..be43e84158 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/file-document-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/file-document-box-outline.svg b/phpBB/styles/prosilver/imgs/svg/file-document-box-outline.svg new file mode 100644 index 0000000000..a4692770a8 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/file-document-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/file-document-outline.svg b/phpBB/styles/prosilver/imgs/svg/file-document-outline.svg new file mode 100644 index 0000000000..deff442b30 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/file-document-outline.svg @@ -0,0 +1 @@ + diff --git a/phpBB/styles/prosilver/imgs/svg/fire.svg b/phpBB/styles/prosilver/imgs/svg/fire.svg new file mode 100644 index 0000000000..c00b07f158 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/info-variant.svg b/phpBB/styles/prosilver/imgs/svg/info-variant.svg new file mode 100644 index 0000000000..0d03fb2bbc --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/info-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/link-variant.svg b/phpBB/styles/prosilver/imgs/svg/link-variant.svg new file mode 100644 index 0000000000..045cadd451 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/link-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/lock.svg b/phpBB/styles/prosilver/imgs/svg/lock.svg new file mode 100644 index 0000000000..9e7e85d131 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/imgs/svg/star.svg b/phpBB/styles/prosilver/imgs/svg/star.svg new file mode 100644 index 0000000000..07370e9a58 --- /dev/null +++ b/phpBB/styles/prosilver/imgs/svg/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 43f276faf0..f9232d6dc4 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -34,11 +34,11 @@
- {{ Icon('iconify', { - 'mdi:link-variant' : forumrow.S_IS_LINK, - 'mdi:lock' : forumrow.S_LOCKED_FORUM, - 'mdi:file-document-box-multiple-outline' : forumrow.S_SUBFORUMS, - 'mdi:file-document-box-outline' : true, + {{ Icon('svg', { + 'link-variant' : forumrow.S_IS_LINK, + 'lock' : forumrow.S_LOCKED_FORUM, + 'file-document-box-multiple-outline' : forumrow.S_SUBFORUMS, + 'file-document-box-outline' : true, }, '', true, 'c-forum-row-icon') }}
diff --git a/phpBB/styles/prosilver/template/mcp_forum.html b/phpBB/styles/prosilver/template/mcp_forum.html index c0318712a1..cff04e89bc 100644 --- a/phpBB/styles/prosilver/template/mcp_forum.html +++ b/phpBB/styles/prosilver/template/mcp_forum.html @@ -39,14 +39,14 @@
- {{ Icon('iconify', { - 'mdi:info-variant' : topicrow.S_POST_GLOBAL, - 'mdi:info-variant' : topicrow.S_POST_ANNOUNCE, - 'mdi:star' : topicrow.S_POST_STICKY, - 'mdi:lock' : topicrow.S_TOPIC_LOCKED, - 'mdi:arrow-right-bold' : topicrow.S_TOPIC_MOVED, - 'mdi:fire' : topicrow.S_TOPIC_HOT, - 'mdi:file-document-outline' : true, + {{ Icon('svg', { + 'info-variant' : topicrow.S_POST_GLOBAL, + 'info-variant' : topicrow.S_POST_ANNOUNCE, + 'star' : topicrow.S_POST_STICKY, + 'lock' : topicrow.S_TOPIC_LOCKED, + 'arrow-right-bold' : topicrow.S_TOPIC_MOVED, + 'fire' : topicrow.S_TOPIC_HOT, + 'file-document-outline' : true, }, '', true, 'c-forum-row-icon') }} {% if lang(topicrow.TOPIC_AUTHOR) == S_USERNAME %} diff --git a/phpBB/styles/prosilver/template/navbar_footer.html b/phpBB/styles/prosilver/template/navbar_footer.html index 18026e384d..cb71e2f434 100644 --- a/phpBB/styles/prosilver/template/navbar_footer.html +++ b/phpBB/styles/prosilver/template/navbar_footer.html @@ -7,7 +7,7 @@ {% apply spaceless %} - {{ Icon('font', 'home', lang('SITE_HOME'), false) }} + {{ Icon('font', 'home', lang('SITE_HOME'), false, 'fas o-icon-baseline') }} {% endapply %} @@ -21,7 +21,7 @@ {% if U_SITE_HOME %} {{ lang('INDEX') }} {% else %} - {{ Icon('font', 'home', lang('INDEX'), false) }} + {{ Icon('font', 'home', lang('INDEX'), false, 'fas o-icon-baseline') }} {% endif %} @@ -35,11 +35,11 @@
  • {% if S_WATCHING_FORUM %} - {{ Icon('iconify', 'mdi:eye-minus-outline', '', true, 'c-watch-icon is-active') }} - {{ Icon('iconify', 'mdi:eye-plus-outline', '', true, 'c-watch-icon') }} + {{ Icon('font', 'bell-slash', '', true, 'far c-watch-icon is-active') }} + {{ Icon('font', 'bell', '', true, 'far c-watch-icon') }} {% else %} - {{ Icon('iconify', 'mdi:eye-plus-outline', '', true, 'c-watch-icon is-active') }} - {{ Icon('iconify', 'mdi:eye-minus-outline', '', true, 'c-watch-icon') }} + {{ Icon('font', 'bell', '', true, 'far c-watch-icon is-active') }} + {{ Icon('font', 'bell-slash', '', true, 'far c-watch-icon') }} {% endif %} {{ S_WATCH_FORUM_TITLE }} diff --git a/phpBB/styles/prosilver/template/pagination.html b/phpBB/styles/prosilver/template/pagination.html index f5f3eb5752..db1251caa3 100644 --- a/phpBB/styles/prosilver/template/pagination.html +++ b/phpBB/styles/prosilver/template/pagination.html @@ -1,7 +1,7 @@