1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Forum: Fixes #1488 - Missing forum icons.

This commit is contained in:
Cameron 2016-04-08 18:04:36 -07:00
parent d54f3fe8af
commit 209d68a6fe
9 changed files with 6 additions and 2 deletions

View File

@ -30,6 +30,10 @@ text-align: center;
}
/* v1.x icon fix */
.forum-viewforum-admin-icons a { vertical-align:top; width:16px; height:16px; display:inline-block; line-height:14px }
.forum-viewforum-admin-icons input { vertical-align:top; width:16px; height:16px}
@media all and (min-height: 800px) {
#forum, #forum-stats, #forum-rules { min-height: 500px; }
}

View File

@ -724,7 +724,7 @@ function parse_thread($thread_info)
$moveUrl = e107::url('forum','move', $thread_info);
$tVars->ADMIN_ICONS = "
<form method='post' action='".e_REQUEST_URI."' id='frmMod_{$forumId}_{$threadId}' style='margin:0;'><div>
<form method='post' action='".e_REQUEST_URI."' id='frmMod_{$forumId}_{$threadId}' style='margin:0;'><div class='forum-viewforum-admin-icons'>
<input type='image' ".IMAGE_admin_delete." name='deleteThread_{$threadId}' value='thread_action' onclick=\"return confirm_({$threadId})\" />
".($thread_info['thread_sticky'] == 1 ? "<input type='image' ".IMAGE_admin_unstick." name='unstick_{$threadId}' value='thread_action' /> " : "<input type='image' ".IMAGE_admin_stick." name='stick_{$threadId}' value='thread_action' /> ")."
".($thread_info['thread_active'] ? "<input type='image' ".IMAGE_admin_lock." name='lock_{$threadId}' value='thread_action' /> " : "<input type='image' ".IMAGE_admin_unlock." name='unlock_{$threadId}' value='thread_action' /> "). "

Binary file not shown.

Before

Width:  |  Height:  |  Size: 822 B

After

Width:  |  Height:  |  Size: 922 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 759 B

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 917 B

After

Width:  |  Height:  |  Size: 823 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 766 B

After

Width:  |  Height:  |  Size: 972 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -13,7 +13,7 @@
if (!defined('e107_INIT')) { exit(); }
$tp = e107::getParser();
if(deftrue("FONTAWESOME", 4)) {
if(deftrue("FONTAWESOME", false)) {
define('IMAGE_e', 'e');
define('IMAGE_new', $tp->toGlyph('fa-star', 'size=2x'));