Forum: Fixes #1488 - Missing forum icons.
@ -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; }
|
||||
}
|
||||
|
@ -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' /> "). "
|
||||
|
Before Width: | Height: | Size: 822 B After Width: | Height: | Size: 922 B |
Before Width: | Height: | Size: 759 B After Width: | Height: | Size: 1002 B |
Before Width: | Height: | Size: 889 B After Width: | Height: | Size: 708 B |
Before Width: | Height: | Size: 917 B After Width: | Height: | Size: 823 B |
Before Width: | Height: | Size: 766 B After Width: | Height: | Size: 972 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 3.6 KiB |
@ -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'));
|
||||
|