Compare commits
6 commits
87fee319cf
...
be01844fa0
Author | SHA1 | Date | |
---|---|---|---|
be01844fa0 | |||
daf4df359e | |||
b8d8996caa | |||
e8d51f6ad8 | |||
a39e8a0df1 | |||
89fda9d960 |
16 changed files with 49 additions and 293 deletions
|
@ -70,7 +70,6 @@ function template_main()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="main_container">
|
<div class="main_container">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar ', $category['is_collapsed'] ? 'collapsed' : '', '" id="category_', $category['id'], '">
|
<div class="cat_bar ', $category['is_collapsed'] ? 'collapsed' : '', '" id="category_', $category['id'], '">
|
||||||
<div class="info">
|
<div class="info">
|
||||||
';
|
';
|
||||||
|
@ -88,8 +87,6 @@ function template_main()
|
||||||
</h2>', !empty($category['description']) ? '
|
</h2>', !empty($category['description']) ? '
|
||||||
<div class="desc">' . $category['description'] . '</div>' : '', '
|
<div class="desc">' . $category['description'] . '</div>' : '', '
|
||||||
</div><!--fin class info-->
|
</div><!--fin class info-->
|
||||||
<div class="board_stats">
|
|
||||||
<div>', $txt['board_topics'], '</div><div>', $txt['posts'], '</div></div>
|
|
||||||
<div class="lastpost">', $txt['last_post'], '</div>
|
<div class="lastpost">', $txt['last_post'], '</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="category_', $category['id'], '_boards" ', (!empty($category['css_class']) ? ('class="' . $category['css_class'] . '"') : ''), $category['is_collapsed'] ? ' style="display: none;"' : '', '>';
|
<div id="category_', $category['id'], '_boards" ', (!empty($category['css_class']) ? ('class="' . $category['css_class'] . '"') : ''), $category['is_collapsed'] ? ' style="display: none;"' : '', '>';
|
||||||
|
@ -109,12 +106,6 @@ function template_main()
|
||||||
', function_exists('template_bi_' . $board['type'] . '_info') ? call_user_func('template_bi_' . $board['type'] . '_info', $board) : template_bi_board_info($board), '
|
', function_exists('template_bi_' . $board['type'] . '_info') ? call_user_func('template_bi_' . $board['type'] . '_info', $board) : template_bi_board_info($board), '
|
||||||
</div><!-- .info -->';
|
</div><!-- .info -->';
|
||||||
|
|
||||||
// Show some basic information about the number of posts, etc.
|
|
||||||
echo '
|
|
||||||
<div class="board_stats">
|
|
||||||
', function_exists('template_bi_' . $board['type'] . '_stats') ? call_user_func('template_bi_' . $board['type'] . '_stats', $board) : template_bi_board_stats($board), '
|
|
||||||
</div>';
|
|
||||||
|
|
||||||
// Show the last post if there is one.
|
// Show the last post if there is one.
|
||||||
echo'
|
echo'
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
|
@ -133,7 +124,6 @@ function template_main()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</div><!-- #category_[id]_boards -->
|
</div><!-- #category_[id]_boards -->
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div><!-- .main_container -->';
|
</div><!-- .main_container -->';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,25 +192,6 @@ function template_bi_board_info($board)
|
||||||
<p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';
|
<p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Outputs the board stats for a standard board.
|
|
||||||
*
|
|
||||||
* @param array $board Current board information.
|
|
||||||
*/
|
|
||||||
function template_bi_board_stats($board)
|
|
||||||
{
|
|
||||||
global $txt;
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<div>
|
|
||||||
', comma_format($board['topics']), '
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
', comma_format($board['posts']), '
|
|
||||||
</div>
|
|
||||||
';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Outputs the board stats for a redirect.
|
* Outputs the board stats for a redirect.
|
||||||
*
|
*
|
||||||
|
@ -302,10 +273,6 @@ function template_bi_board_children($board)
|
||||||
<div class="desc">' . $child['description'] . '
|
<div class="desc">' . $child['description'] . '
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="board_stats">
|
|
||||||
<div>' . comma_format($child['topics']) . '</div>
|
|
||||||
<div>' . comma_format($child['posts']) . '</div>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost"><!--'. $board['last_post']['last_post_message']. '--></div>
|
<div class="lastpost"><!--'. $board['last_post']['last_post_message']. '--></div>
|
||||||
</div>' : '
|
</div>' : '
|
||||||
|
|
||||||
|
@ -320,10 +287,6 @@ function template_bi_board_children($board)
|
||||||
<div class="desc">' . $child['description'] . '
|
<div class="desc">' . $child['description'] . '
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="board_stats">
|
|
||||||
<div>' . comma_format($child['topics']) . '</div>
|
|
||||||
<div>' . comma_format($child['posts']) . '</div>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost"><!--Todo Erreur !!
|
<div class="lastpost"><!--Todo Erreur !!
|
||||||
'. $board['last_post']['last_post_message']. '-->
|
'. $board['last_post']['last_post_message']. '-->
|
||||||
</div>
|
</div>
|
||||||
|
@ -362,7 +325,6 @@ function template_info_center()
|
||||||
|
|
||||||
// Here's where the "Info Center" starts...
|
// Here's where the "Info Center" starts...
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="roundframe" id="info_center">
|
<div class="roundframe" id="info_center">
|
||||||
<div class="title_bar">
|
<div class="title_bar">
|
||||||
<h2 class="titlebg">
|
<h2 class="titlebg">
|
||||||
|
|
|
@ -32,8 +32,7 @@ function template_main()
|
||||||
</div>';
|
</div>';
|
||||||
|
|
||||||
// Show new topic info here?
|
// Show new topic info here?
|
||||||
echo '<div class="khbiseau_topright_khcolor"></div>
|
echo '<div id="display_head" class="khbb_head_subject">
|
||||||
<div id="display_head" class="khbb_head_subject">
|
|
||||||
<h2 class="display_title">
|
<h2 class="display_title">
|
||||||
<span id="top_subject">', $context['subject'], '</span>', ($context['is_locked']) ? ' <span class="main_icons lock"></span>' : '', ($context['is_sticky']) ? ' <span class="main_icons sticky"></span>' : '', '
|
<span id="top_subject">', $context['subject'], '</span>', ($context['is_locked']) ? ' <span class="main_icons lock"></span>' : '', ($context['is_sticky']) ? ' <span class="main_icons sticky"></span>' : '', '
|
||||||
</h2>
|
</h2>
|
||||||
|
|
|
@ -19,7 +19,6 @@ function template_login()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="login">
|
<div class="login">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span class="main_icons login"></span> ', $txt['login'], '
|
<span class="main_icons login"></span> ', $txt['login'], '
|
||||||
|
@ -157,7 +156,6 @@ function template_login()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</div><!-- .roundframe -->
|
</div><!-- .roundframe -->
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div><!-- .login -->';
|
</div><!-- .login -->';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@ function template_main()
|
||||||
', template_button_strip($context['memberlist_buttons'], 'right'), '
|
', template_button_strip($context['memberlist_buttons'], 'right'), '
|
||||||
<div class="pagelinks floatleft">', $context['page_index'], '</div>
|
<div class="pagelinks floatleft">', $context['page_index'], '</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span class="floatleft">', $txt['members_list'], '</span>';
|
<span class="floatleft">', $txt['members_list'], '</span>';
|
||||||
|
@ -129,7 +128,6 @@ function template_main()
|
||||||
echo '
|
echo '
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div><!-- #mlist -->';
|
</div><!-- #mlist -->';
|
||||||
|
|
||||||
// Show the page numbers again. (makes 'em easier to find!)
|
// Show the page numbers again. (makes 'em easier to find!)
|
||||||
|
|
|
@ -18,7 +18,6 @@ function template_main()
|
||||||
global $context, $settings, $options, $scripturl, $modSettings, $txt;
|
global $context, $settings, $options, $scripturl, $modSettings, $txt;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_khcolor"></div>
|
|
||||||
<div id="display_head">
|
<div id="display_head">
|
||||||
<h2 class="display_title">', $context['name'], '</h2>';
|
<h2 class="display_title">', $context['name'], '</h2>';
|
||||||
|
|
||||||
|
@ -59,7 +58,6 @@ function template_main()
|
||||||
echo '
|
echo '
|
||||||
<div id="board_', $context['current_board'], '_childboards" class="boardindex_table main_container">
|
<div id="board_', $context['current_board'], '_childboards" class="boardindex_table main_container">
|
||||||
|
|
||||||
<div class="cat_bar without_biseau">
|
|
||||||
<div class="info">
|
<div class="info">
|
||||||
';
|
';
|
||||||
// Like collapse icon, but don't collapse because I don't know how. TODO !
|
// Like collapse icon, but don't collapse because I don't know how. TODO !
|
||||||
|
@ -68,8 +66,6 @@ function template_main()
|
||||||
|
|
||||||
<h2 class="catbg">', $txt['sub_boards'], '</h2>
|
<h2 class="catbg">', $txt['sub_boards'], '</h2>
|
||||||
</div><!--fin class info-->
|
</div><!--fin class info-->
|
||||||
<div class="board_stats">
|
|
||||||
<div>', $txt['board_topics'], '</div><div>', $txt['posts'], '</div></div>
|
|
||||||
<div class="lastpost">', $txt['last_post'], '</div>
|
<div class="lastpost">', $txt['last_post'], '</div>
|
||||||
|
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -85,12 +81,6 @@ function template_main()
|
||||||
', function_exists('template_bi_' . $board['type'] . '_info') ? call_user_func('template_bi_' . $board['type'] . '_info', $board) : template_bi_board_info($board), '
|
', function_exists('template_bi_' . $board['type'] . '_info') ? call_user_func('template_bi_' . $board['type'] . '_info', $board) : template_bi_board_info($board), '
|
||||||
</div><!-- .info -->';
|
</div><!-- .info -->';
|
||||||
|
|
||||||
// Show some basic information about the number of posts, etc.
|
|
||||||
echo '
|
|
||||||
<div class="board_stats">
|
|
||||||
', function_exists('template_bi_' . $board['type'] . '_stats') ? call_user_func('template_bi_' . $board['type'] . '_stats', $board) : template_bi_board_stats($board), '
|
|
||||||
</div>';
|
|
||||||
|
|
||||||
// Show the last post if there is one.
|
// Show the last post if there is one.
|
||||||
echo '
|
echo '
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
|
@ -109,7 +99,6 @@ function template_main()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</div><!-- #board_[current_board]_childboards -->
|
</div><!-- #board_[current_board]_childboards -->
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
';
|
';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -166,10 +155,6 @@ function template_main()
|
||||||
echo '
|
echo '
|
||||||
<div class="board_icon"></div>
|
<div class="board_icon"></div>
|
||||||
<div class="info">', $context['topics_headers']['subject'], ' / ', $context['topics_headers']['starter'], '</div>
|
<div class="info">', $context['topics_headers']['subject'], ' / ', $context['topics_headers']['starter'], '</div>
|
||||||
<div class="board_stats centertext">
|
|
||||||
<div>', $context['topics_headers']['replies'], ' </div>
|
|
||||||
<div> ', $context['topics_headers']['views'], ' </div>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">', $context['topics_headers']['last_post'], '</div>';
|
<div class="lastpost">', $context['topics_headers']['last_post'], '</div>';
|
||||||
|
|
||||||
// Show a "select all" box for quick moderation?
|
// Show a "select all" box for quick moderation?
|
||||||
|
@ -250,10 +235,6 @@ function template_main()
|
||||||
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
||||||
</div><!-- #topic_[first_post][id] -->
|
</div><!-- #topic_[first_post][id] -->
|
||||||
</div><!-- .info -->
|
</div><!-- .info -->
|
||||||
<div class="board_stats centertext">
|
|
||||||
<div> ', $topic['replies'], ' </div>
|
|
||||||
<div> ', $topic['views'], ' </div>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
<p>', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '</p>
|
<p>', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '</p>
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -295,7 +276,6 @@ function template_main()
|
||||||
}
|
}
|
||||||
echo '
|
echo '
|
||||||
</div><!-- #topic_container -->
|
</div><!-- #topic_container -->
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
';
|
';
|
||||||
|
|
||||||
echo '<div class="righttext" id="quick_actions">';
|
echo '<div class="righttext" id="quick_actions">';
|
||||||
|
@ -478,21 +458,6 @@ function template_bi_board_info($board)
|
||||||
<p class="moderators">', count($board['link_moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';
|
<p class="moderators">', count($board['link_moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Outputs the board stats for a standard board.
|
|
||||||
*
|
|
||||||
* @param array $board Current board information.
|
|
||||||
*/
|
|
||||||
function template_bi_board_stats($board)
|
|
||||||
{
|
|
||||||
global $txt;
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<div> ', comma_format($board['topics']), ' </div>
|
|
||||||
<div> ', comma_format($board['posts']), ' </div>
|
|
||||||
';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Outputs the board stats for a redirect.
|
* Outputs the board stats for a redirect.
|
||||||
*
|
*
|
||||||
|
|
|
@ -23,7 +23,6 @@ function template_pm_above()
|
||||||
// Show the capacity bar, if available.
|
// Show the capacity bar, if available.
|
||||||
if (!empty($context['limit_bar']))
|
if (!empty($context['limit_bar']))
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span class="floatleft">', $txt['pm_capacity'], ':</span>
|
<span class="floatleft">', $txt['pm_capacity'], ':</span>
|
||||||
|
@ -207,7 +206,6 @@ function template_folder()
|
||||||
if (!empty($context['current_pm_subject']))
|
if (!empty($context['current_pm_subject']))
|
||||||
{
|
{
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span>', $txt['conversation'], '</span>
|
<span>', $txt['conversation'], '</span>
|
||||||
|
@ -616,7 +614,6 @@ function template_subject_list()
|
||||||
global $context, $settings, $txt, $scripturl;
|
global $context, $settings, $txt, $scripturl;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
', $context['folder'] == 'sent' ? $txt['sent_items'] : $context['current_label'], '
|
', $context['folder'] == 'sent' ? $txt['sent_items'] : $context['current_label'], '
|
||||||
|
@ -758,7 +755,6 @@ function template_search()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<form action="', $scripturl, '?action=pm;sa=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">
|
<form action="', $scripturl, '?action=pm;sa=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_search_title'], '</h2>
|
<h2 class="catbg">', $txt['pm_search_title'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -902,7 +898,6 @@ function template_search_results()
|
||||||
global $context, $txt;
|
global $context, $txt;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_search_results'], '</h2>
|
<h2 class="catbg">', $txt['pm_search_results'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -975,7 +970,6 @@ function template_send()
|
||||||
if (!empty($context['send_log']))
|
if (!empty($context['send_log']))
|
||||||
{
|
{
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_send_report'], '</h2>
|
<h2 class="catbg">', $txt['pm_send_report'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -999,7 +993,6 @@ function template_send()
|
||||||
// Show the preview of the personal message.
|
// Show the preview of the personal message.
|
||||||
echo '
|
echo '
|
||||||
<div id="preview_section"', isset($context['preview_message']) ? '' : ' class="hidden"', '>
|
<div id="preview_section"', isset($context['preview_message']) ? '' : ' class="hidden"', '>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
|
<span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
|
||||||
|
@ -1016,7 +1009,6 @@ function template_send()
|
||||||
// Main message editing box.
|
// Main message editing box.
|
||||||
echo '
|
echo '
|
||||||
<form action="', $scripturl, '?action=pm;sa=send2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_hidden" onsubmit="submitonce(this);">
|
<form action="', $scripturl, '?action=pm;sa=send2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_hidden" onsubmit="submitonce(this);">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span class="main_icons inbox icon" title="', $txt['new_message'], '"></span> ', $txt['new_message'], '
|
<span class="main_icons inbox icon" title="', $txt['new_message'], '"></span> ', $txt['new_message'], '
|
||||||
|
@ -1271,7 +1263,6 @@ function template_send()
|
||||||
if ($context['reply'])
|
if ($context['reply'])
|
||||||
echo '
|
echo '
|
||||||
<br><br>
|
<br><br>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h2>
|
<h2 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1338,7 +1329,6 @@ function template_ask_delete()
|
||||||
global $context, $scripturl, $txt;
|
global $context, $scripturl, $txt;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
', ($context['delete_all'] ? $txt['delete_message'] : $txt['delete_all']), '
|
', ($context['delete_all'] ? $txt['delete_message'] : $txt['delete_all']), '
|
||||||
|
@ -1359,7 +1349,6 @@ function template_prune()
|
||||||
global $context, $scripturl, $txt;
|
global $context, $scripturl, $txt;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_prune'], '</h2>
|
<h2 class="catbg">', $txt['pm_prune'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1388,7 +1377,6 @@ function template_labels()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
|
<form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_manage_labels'], '</h2>
|
<h2 class="catbg">', $txt['pm_manage_labels'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1448,7 +1436,6 @@ function template_labels()
|
||||||
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
|
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
|
||||||
</form>
|
</form>
|
||||||
<form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
|
<form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_label_add_new'], '</h2>
|
<h2 class="catbg">', $txt['pm_label_add_new'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1481,7 +1468,6 @@ function template_report_message()
|
||||||
<div class="information">
|
<div class="information">
|
||||||
', $txt['pm_report_desc'], '
|
', $txt['pm_report_desc'], '
|
||||||
</div>
|
</div>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_report_title'], '</h2>
|
<h2 class="catbg">', $txt['pm_report_title'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1533,7 +1519,6 @@ function template_report_message_complete()
|
||||||
global $context, $txt, $scripturl;
|
global $context, $txt, $scripturl;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_report_title'], '</h2>
|
<h2 class="catbg">', $txt['pm_report_title'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1552,7 +1537,6 @@ function template_rules()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<form action="', $scripturl, '?action=pm;sa=manrules" method="post" accept-charset="', $context['character_set'], '" name="manRules" id="manrules">
|
<form action="', $scripturl, '?action=pm;sa=manrules" method="post" accept-charset="', $context['character_set'], '" name="manRules" id="manrules">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_manage_rules'], '</h2>
|
<h2 class="catbg">', $txt['pm_manage_rules'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1773,7 +1757,6 @@ function template_add_rule()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<form action="', $scripturl, '?action=pm;sa=manrules;save;rid=', $context['rid'], '" method="post" accept-charset="', $context['character_set'], '" name="addrule" id="addrule" class="flow_hidden">
|
<form action="', $scripturl, '?action=pm;sa=manrules;save;rid=', $context['rid'], '" method="post" accept-charset="', $context['character_set'], '" name="addrule" id="addrule" class="flow_hidden">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $context['rid'] == 0 ? $txt['pm_add_rule'] : $txt['pm_edit_rule'], '</h2>
|
<h2 class="catbg">', $context['rid'] == 0 ? $txt['pm_add_rule'] : $txt['pm_edit_rule'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1890,7 +1873,6 @@ function template_add_rule()
|
||||||
<span id="actionAddHere"></span><br>
|
<span id="actionAddHere"></span><br>
|
||||||
<a href="#" onclick="addActionOption(); return false;" id="addonjs2" style="display: none;">(', $txt['pm_rule_add_action'], ')</a>
|
<a href="#" onclick="addActionOption(); return false;" id="addonjs2" style="display: none;">(', $txt['pm_rule_add_action'], ')</a>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['pm_rule_description'], '</h2>
|
<h2 class="catbg">', $txt['pm_rule_description'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1945,7 +1927,6 @@ function template_showPMDrafts()
|
||||||
global $context, $scripturl, $txt;
|
global $context, $scripturl, $txt;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span class="main_icons inbox"></span> ', $txt['drafts_show'], '
|
<span class="main_icons inbox"></span> ', $txt['drafts_show'], '
|
||||||
|
|
|
@ -55,7 +55,6 @@ function template_main()
|
||||||
echo '
|
echo '
|
||||||
<div id="edit_poll">
|
<div id="edit_poll">
|
||||||
<form action="' . $scripturl . '?action=editpoll2', $context['is_edit'] ? '' : ';add', ';topic=' . $context['current_topic'] . '.' . $context['start'] . '" method="post" accept-charset="', $context['character_set'], '" onsubmit="submitonce(this);" name="postmodify" id="postmodify">
|
<form action="' . $scripturl . '?action=editpoll2', $context['is_edit'] ? '' : ';add', ';topic=' . $context['current_topic'] . '.' . $context['start'] . '" method="post" accept-charset="', $context['character_set'], '" onsubmit="submitonce(this);" name="postmodify" id="postmodify">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $context['page_title'], '</h2>
|
<h2 class="catbg">', $context['page_title'], '</h2>
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -155,7 +154,6 @@ function template_main()
|
||||||
<input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '">
|
<input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '">
|
||||||
<input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '">
|
<input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '">
|
||||||
</form>
|
</form>
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div><!-- #edit_poll -->
|
</div><!-- #edit_poll -->
|
||||||
';
|
';
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,6 @@ function template_main()
|
||||||
// If the user wants to see how their message looks - the preview section is where it's at!
|
// If the user wants to see how their message looks - the preview section is where it's at!
|
||||||
echo '
|
echo '
|
||||||
<div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
|
<div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">
|
<h2 class="catbg">
|
||||||
<span id="preview_subject">', empty($context['preview_subject']) ? ' ' : $context['preview_subject'], '</span>
|
<span id="preview_subject">', empty($context['preview_subject']) ? ' ' : $context['preview_subject'], '</span>
|
||||||
|
@ -81,7 +80,6 @@ function template_main()
|
||||||
<div id="preview_body" class="windowbg">
|
<div id="preview_body" class="windowbg">
|
||||||
', empty($context['preview_message']) ? '<br>' : $context['preview_message'], '
|
', empty($context['preview_message']) ? '<br>' : $context['preview_message'], '
|
||||||
</div>
|
</div>
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div>
|
</div>
|
||||||
<br>';
|
<br>';
|
||||||
|
|
||||||
|
@ -91,7 +89,6 @@ function template_main()
|
||||||
|
|
||||||
// Start the main table.
|
// Start the main table.
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $context['page_title'], '</h2>
|
<h2 class="catbg">', $context['page_title'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -500,7 +497,6 @@ function template_main()
|
||||||
</span>
|
</span>
|
||||||
</div><!-- .roundframe -->
|
</div><!-- .roundframe -->
|
||||||
</div><!-- #post_area -->
|
</div><!-- #post_area -->
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
<br class="clear">';
|
<br class="clear">';
|
||||||
|
|
||||||
// Assuming this isn't a new topic pass across the last message id.
|
// Assuming this isn't a new topic pass across the last message id.
|
||||||
|
@ -632,7 +628,6 @@ function template_main()
|
||||||
{
|
{
|
||||||
echo '
|
echo '
|
||||||
<div id="recent" class="flow_hidden main_section">
|
<div id="recent" class="flow_hidden main_section">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar cat_bar_round">
|
<div class="cat_bar cat_bar_round">
|
||||||
<h2 class="catbg">', $txt['topic_summary'], '</h2>
|
<h2 class="catbg">', $txt['topic_summary'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -678,7 +673,6 @@ function template_main()
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
</div><!-- #recent -->
|
</div><!-- #recent -->
|
||||||
<script>
|
<script>
|
||||||
var aIgnoreToggles = new Array();';
|
var aIgnoreToggles = new Array();';
|
||||||
|
@ -860,7 +854,6 @@ function template_announce()
|
||||||
echo '
|
echo '
|
||||||
<div id="announcement">
|
<div id="announcement">
|
||||||
<form action="', $scripturl, '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '">
|
<form action="', $scripturl, '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['announce_title'], '</h2>
|
<h2 class="catbg">', $txt['announce_title'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -495,8 +495,7 @@ function template_showPosts()
|
||||||
</div>', !empty($context['page_index']) ? '
|
</div>', !empty($context['page_index']) ? '
|
||||||
<div class="pagesection">
|
<div class="pagesection">
|
||||||
<div class="pagelinks">' . $context['page_index'] . '</div>
|
<div class="pagelinks">' . $context['page_index'] . '</div>
|
||||||
</div>
|
</div>' : '';
|
||||||
<div class="khbiseau_topright_white"></div>' : '';
|
|
||||||
|
|
||||||
// Are we displaying posts or attachments?
|
// Are we displaying posts or attachments?
|
||||||
if (!isset($context['attachments']))
|
if (!isset($context['attachments']))
|
||||||
|
@ -552,8 +551,6 @@ function template_showPosts()
|
||||||
', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), '
|
', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), '
|
||||||
</div>';
|
</div>';
|
||||||
|
|
||||||
echo '<div class="khbiseau_bottom_white"></div>';
|
|
||||||
|
|
||||||
// Show more page numbers.
|
// Show more page numbers.
|
||||||
if (!empty($context['page_index']))
|
if (!empty($context['page_index']))
|
||||||
echo '
|
echo '
|
||||||
|
|
|
@ -19,7 +19,6 @@ function template_recent()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div id="recent" class="main_section">
|
<div id="recent" class="main_section">
|
||||||
<div class="khbiseau_topright_khcolor"></div>
|
|
||||||
<div id="display_head" class="information">
|
<div id="display_head" class="information">
|
||||||
<h2 class="display_title">
|
<h2 class="display_title">
|
||||||
<span id="top_subject">', $txt['recent_posts'], '</span>
|
<span id="top_subject">', $txt['recent_posts'], '</span>
|
||||||
|
@ -60,7 +59,6 @@ function template_recent()
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_bottom_white"></div>
|
|
||||||
<div class="pagesection">
|
<div class="pagesection">
|
||||||
<div class="pagelinks">', $context['page_index'], '</div>
|
<div class="pagelinks">', $context['page_index'], '</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -133,9 +131,6 @@ function template_unread()
|
||||||
<span class="main_icons sort_' . $context['sort_direction'] . '"></span>
|
<span class="main_icons sort_' . $context['sort_direction'] . '"></span>
|
||||||
' : '', '</a>
|
' : '', '</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="board_stats centertext">
|
|
||||||
<a href="', $scripturl, '?action=unread', $context['showing_all_topics'] ? ';all' : '', $context['querystring_board_limits'], ';sort=replies', $context['sort_by'] == 'replies' && $context['sort_direction'] == 'up' ? ';desc' : '', '">', $txt['replies'], $context['sort_by'] == 'replies' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
<a href="', $scripturl, '?action=unread', $context['showing_all_topics'] ? ';all' : '', $context['querystring_board_limits'], ';sort=last_post', $context['sort_by'] == 'last_post' && $context['sort_direction'] == 'up' ? ';desc' : '', '">', $txt['last_post'], $context['sort_by'] == 'last_post' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
<a href="', $scripturl, '?action=unread', $context['showing_all_topics'] ? ';all' : '', $context['querystring_board_limits'], ';sort=last_post', $context['sort_by'] == 'last_post' && $context['sort_direction'] == 'up' ? ';desc' : '', '">', $txt['last_post'], $context['sort_by'] == 'last_post' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -190,13 +185,6 @@ function template_unread()
|
||||||
</p>
|
</p>
|
||||||
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
||||||
</div><!-- .info -->
|
</div><!-- .info -->
|
||||||
<div class="board_stats centertext">
|
|
||||||
<p>
|
|
||||||
', $topic['replies'], ' ', $txt['replies'], '
|
|
||||||
<br>
|
|
||||||
', $topic['views'], ' ', $txt['views'], '
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '
|
', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -321,9 +309,6 @@ function template_replies()
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<a href="', $scripturl, '?action=unreadreplies', $context['querystring_board_limits'], ';sort=subject', $context['sort_by'] === 'subject' && $context['sort_direction'] === 'up' ? ';desc' : '', '">', $txt['subject'], $context['sort_by'] === 'subject' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
<a href="', $scripturl, '?action=unreadreplies', $context['querystring_board_limits'], ';sort=subject', $context['sort_by'] === 'subject' && $context['sort_direction'] === 'up' ? ';desc' : '', '">', $txt['subject'], $context['sort_by'] === 'subject' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="board_stats centertext">
|
|
||||||
<a href="', $scripturl, '?action=unreadreplies', $context['querystring_board_limits'], ';sort=replies', $context['sort_by'] === 'replies' && $context['sort_direction'] === 'up' ? ';desc' : '', '">', $txt['replies'], $context['sort_by'] === 'replies' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
<a href="', $scripturl, '?action=unreadreplies', $context['querystring_board_limits'], ';sort=last_post', $context['sort_by'] === 'last_post' && $context['sort_direction'] === 'up' ? ';desc' : '', '">', $txt['last_post'], $context['sort_by'] === 'last_post' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
<a href="', $scripturl, '?action=unreadreplies', $context['querystring_board_limits'], ';sort=last_post', $context['sort_by'] === 'last_post' && $context['sort_direction'] === 'up' ? ';desc' : '', '">', $txt['last_post'], $context['sort_by'] === 'last_post' ? ' <span class="main_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
|
||||||
</div>';
|
</div>';
|
||||||
|
@ -378,13 +363,6 @@ function template_replies()
|
||||||
</p>
|
</p>
|
||||||
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
||||||
</div><!-- .info -->
|
</div><!-- .info -->
|
||||||
<div class="board_stats centertext">
|
|
||||||
<p>
|
|
||||||
', $topic['replies'], ' ', $txt['replies'], '
|
|
||||||
<br>
|
|
||||||
', $topic['views'], ' ', $txt['views'], '
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="lastpost">
|
<div class="lastpost">
|
||||||
', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '
|
', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), '
|
||||||
</div>';
|
</div>';
|
||||||
|
|
|
@ -22,14 +22,12 @@ function template_registration_agreement()
|
||||||
|
|
||||||
if (!empty($context['agreement']))
|
if (!empty($context['agreement']))
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['registration_agreement'], '</h2>
|
<h2 class="catbg">', $txt['registration_agreement'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="roundframe">
|
<div class="roundframe">
|
||||||
<div>', $context['agreement'], '</div>
|
<div>', $context['agreement'], '</div>
|
||||||
</div>
|
</div>';
|
||||||
<div class="khbiseau_bottom_white"></div>';
|
|
||||||
|
|
||||||
if (!empty($context['privacy_policy']))
|
if (!empty($context['privacy_policy']))
|
||||||
echo '
|
echo '
|
||||||
|
@ -104,7 +102,6 @@ function template_registration_form()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<form action="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=signup2" method="post" accept-charset="', $context['character_set'], '" name="registration" id="registration" onsubmit="return verifyAgree();">
|
<form action="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=signup2" method="post" accept-charset="', $context['character_set'], '" name="registration" id="registration" onsubmit="return verifyAgree();">
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<div class="cat_bar">
|
<div class="cat_bar">
|
||||||
<h2 class="catbg">', $txt['registration_form'], '</h2>
|
<h2 class="catbg">', $txt['registration_form'], '</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -180,8 +177,7 @@ function template_registration_form()
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div><!-- .roundframe -->
|
</div><!-- .roundframe -->';
|
||||||
<div class="khbiseau_bottom_white"></div>';
|
|
||||||
|
|
||||||
// If we have either of these, show the extra group.
|
// If we have either of these, show the extra group.
|
||||||
if (!empty($context['profile_fields']) || !empty($context['custom_fields']))
|
if (!empty($context['profile_fields']) || !empty($context['custom_fields']))
|
||||||
|
|
|
@ -19,7 +19,6 @@ function template_main()
|
||||||
global $context, $txt, $scripturl, $modSettings;
|
global $context, $txt, $scripturl, $modSettings;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="khbiseau_topright_color"></div>
|
|
||||||
<form action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">';
|
<form action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">';
|
||||||
|
|
||||||
if (!empty($context['search_errors']))
|
if (!empty($context['search_errors']))
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
/* Variables */
|
/* Variables */
|
||||||
html {
|
html {
|
||||||
--bgcolor: #bd8f97;
|
--bgcolor: #dddddd;
|
||||||
--dark-color: #401018; /* Pour les textes entre autre */
|
--dark-color: #401018; /* Pour les textes entre autre */
|
||||||
--color1: #e8304e;
|
--color1: #e8304e;
|
||||||
--color2: #b03a4d;
|
--color2: #b03a4d;
|
||||||
|
@ -34,8 +34,6 @@ body {
|
||||||
color: var(--dark-color);
|
color: var(--dark-color);
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url("../images/curve2.png") repeat-y fixed left bottom,url("../images/curve.png") repeat-y fixed right bottom var(--bgcolor);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
::selection {
|
::selection {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
@ -524,7 +522,7 @@ a img {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 0 5px 0 5px;
|
margin: 0 5px 0 5px;
|
||||||
transition: background-color 0.25s;
|
transition: background-color 0.25s;
|
||||||
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
|
clip-path: circle(50%);
|
||||||
}
|
}
|
||||||
.toggle_down::before {
|
.toggle_down::before {
|
||||||
background-position: 0 -17px;
|
background-position: 0 -17px;
|
||||||
|
@ -818,7 +816,7 @@ img.sort, .sort {
|
||||||
padding: 3px 6px 0px 6px;
|
padding: 3px 6px 0px 6px;
|
||||||
color: var(--neutral-light-color);
|
color: var(--neutral-light-color);
|
||||||
background: var(--color1);
|
background: var(--color1);
|
||||||
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
|
clip-path: circle(50%);
|
||||||
|
|
||||||
}
|
}
|
||||||
.dropmenu li .active .amt, #top_info li .active .amt {
|
.dropmenu li .active .amt, #top_info li .active .amt {
|
||||||
|
@ -1267,7 +1265,7 @@ h1.forumtitle {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
h1.forumtitle a {
|
h1.forumtitle a {
|
||||||
color: white;
|
color: var(--color1);
|
||||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
border-bottom-style: inherit !important;
|
border-bottom-style: inherit !important;
|
||||||
|
@ -3344,22 +3342,11 @@ h2 .collapse {
|
||||||
width: 55% ;
|
width: 55% ;
|
||||||
display:flex;
|
display:flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0;
|
padding: 1em 0 0 0;
|
||||||
}
|
|
||||||
div.cat_bar.without_biseau {
|
|
||||||
padding-top: 1em;
|
|
||||||
}
|
}
|
||||||
.cat_bar .info > span {
|
.cat_bar .info > span {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
.boardindex_table .board_stats, .cat_bar .board_stats {
|
|
||||||
/*padding: 13px 10px 10px;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.boardindex_table .board_stats p {
|
|
||||||
border-left: 1px solid var(--neutral-color);
|
|
||||||
border-right: 1px solid var(--neutral-color);
|
|
||||||
}
|
|
||||||
.info {
|
.info {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
|
@ -3369,14 +3356,6 @@ div.cat_bar.without_biseau {
|
||||||
.info .subject {
|
.info .subject {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
.board_stats {
|
|
||||||
width: 15%;
|
|
||||||
font-size: 0.9em;
|
|
||||||
margin: 0 0 0 auto;
|
|
||||||
text-align: center;
|
|
||||||
display: flex !important ;
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lastpost {
|
.lastpost {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
|
@ -3395,12 +3374,11 @@ div.cat_bar.without_biseau {
|
||||||
display: inherit;
|
display: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.board_icon, .info, .board_stats, .lastpost {
|
.board_icon, .info, .lastpost {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.main_container {
|
.main_container {
|
||||||
/* pas de marge pour les biseaux
|
margin: 0 0 0.5em 0;
|
||||||
* margin-bottom: 0.5em;*/
|
|
||||||
}
|
}
|
||||||
.up_contain {
|
.up_contain {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -3549,7 +3527,7 @@ span.postby {
|
||||||
#topic_container .lastpost, #topic_header .lastpost {
|
#topic_container .lastpost, #topic_header .lastpost {
|
||||||
width: 20%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
#topic_container .lastpost, #topic_container .board_stats {
|
#topic_container .lastpost {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.icon img, .moderation input {
|
.icon img, .moderation input {
|
||||||
|
@ -4067,8 +4045,7 @@ ul.post_options li {
|
||||||
/* Cat_bar / catbg */
|
/* Cat_bar / catbg */
|
||||||
div.cat_bar {
|
div.cat_bar {
|
||||||
background: var(--color2);
|
background: var(--color2);
|
||||||
padding: 0;
|
padding: 0 0 1em 0;
|
||||||
padding-bottom: 1em;
|
|
||||||
color: var(--neutral-light-color);
|
color: var(--neutral-light-color);
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
@ -4433,7 +4410,7 @@ h2.profile_hd::before,
|
||||||
padding: 3px 6px 0px 6px;
|
padding: 3px 6px 0px 6px;
|
||||||
background: var(--color5);
|
background: var(--color5);
|
||||||
color: var(--neutral-light-color);
|
color: var(--neutral-light-color);
|
||||||
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
|
clip-path: circle(50%);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
@ -4694,7 +4671,7 @@ img.theme_thumbnail {
|
||||||
width: 2em;
|
width: 2em;
|
||||||
}
|
}
|
||||||
.khbb_nav ul li:hover img {
|
.khbb_nav ul li:hover img {
|
||||||
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
|
clip-path: circle(50%);
|
||||||
background-color: var(--neutral-light-color);
|
background-color: var(--neutral-light-color);
|
||||||
}
|
}
|
||||||
.khbb_nav ul li a:hover .khbb_subtitlemenu, .khbb_nav ul li a:focus .khbb_subtitlemenu {
|
.khbb_nav ul li a:hover .khbb_subtitlemenu, .khbb_nav ul li a:focus .khbb_subtitlemenu {
|
||||||
|
@ -4815,48 +4792,6 @@ img.theme_thumbnail {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Biseaux */
|
|
||||||
.khbiseau_bottom_white {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: white transparent transparent transparent;
|
|
||||||
border-width: 0.5em;
|
|
||||||
padding: 0;
|
|
||||||
background-color: transparent !important;
|
|
||||||
}
|
|
||||||
.khbiseau_bottom_color {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: var(--color2) transparent transparent transparent;
|
|
||||||
border-width: 0.5em;
|
|
||||||
padding: 0;
|
|
||||||
background-color: transparent !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.khbiseau_topright_white {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent #fff transparent;
|
|
||||||
border-width: 0 1.5em 1.5em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.khbiseau_topright_color {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent var(--color2) transparent;
|
|
||||||
border-width: 0 1em 1em 0;
|
|
||||||
}
|
|
||||||
.khbiseau_topright_khcolor {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent var(--mmf-color) transparent;
|
|
||||||
border-width: 0 1em 1em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.khbiseau_right_color {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent red red;
|
|
||||||
border-width: 1.5em 0em 1.5em 1.5em;
|
|
||||||
height: 100%;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Petit hexagone */
|
/* Petit hexagone */
|
||||||
.not_toggle {
|
.not_toggle {
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
|
@ -4871,7 +4806,7 @@ img.theme_thumbnail {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 0 5px 0 5px;
|
margin: 0 5px 0 5px;
|
||||||
transition: background-color 0.25s;
|
transition: background-color 0.25s;
|
||||||
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
|
clip-path: circle(50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Divers KH */
|
/* Divers KH */
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
/* Board */
|
/* Board */
|
||||||
.board_stats, .cat_bar .lastpost {
|
.cat_bar .lastpost {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
.khbb_children {
|
.khbb_children {
|
||||||
|
@ -128,9 +128,6 @@
|
||||||
.lastpost {
|
.lastpost {
|
||||||
margin: 0 0 0 20px;
|
margin: 0 0 0 20px;
|
||||||
}
|
}
|
||||||
.board_stats {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#alerts .alert_time {
|
#alerts .alert_time {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -315,9 +312,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BoardIndex */
|
/* BoardIndex */
|
||||||
.board_stats {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.info {
|
.info {
|
||||||
width: calc(100% - 65px);
|
width: calc(100% - 65px);
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg5"
|
id="svg5"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
sodipodi:docname="boardicons.svg"
|
sodipodi:docname="boardicons.svg"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
@ -25,80 +25,44 @@
|
||||||
inkscape:document-units="mm"
|
inkscape:document-units="mm"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:zoom="2.6557772"
|
inkscape:zoom="2.6557772"
|
||||||
inkscape:cx="121.43338"
|
inkscape:cx="41.0426"
|
||||||
inkscape:cy="100.34727"
|
inkscape:cy="102.6065"
|
||||||
inkscape:window-width="1920"
|
inkscape:window-width="1278"
|
||||||
inkscape:window-height="1026"
|
inkscape:window-height="1022"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="2"
|
inkscape:window-y="0"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="0"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showguides="false" /><defs
|
showguides="false" /><defs
|
||||||
id="defs2" /><g
|
id="defs2" /><g
|
||||||
inkscape:label="Calque 1"
|
inkscape:label="Calque 1"
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-28.695021,-30.302504)"><path
|
transform="translate(-28.695021,-30.302504)"><ellipse
|
||||||
sodipodi:type="star"
|
style="fill:#bd9098;stroke-width:0.264583;fill-opacity:1"
|
||||||
style="opacity:1;fill:#bd9098;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
id="path937"
|
||||||
id="path1239"
|
cx="40.557663"
|
||||||
inkscape:flatsided="true"
|
cy="42.090816"
|
||||||
sodipodi:sides="6"
|
rx="11.398761"
|
||||||
sodipodi:cx="8.7351255"
|
ry="9.8460035" /><ellipse
|
||||||
sodipodi:cy="6.197978"
|
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||||
sodipodi:r1="29.58176"
|
id="path937-6"
|
||||||
sodipodi:r2="25.618555"
|
cx="64.561783"
|
||||||
sodipodi:arg1="-1.0471976"
|
cy="41.876976"
|
||||||
sodipodi:arg2="-0.52359878"
|
rx="11.398761"
|
||||||
inkscape:rounded="0"
|
ry="9.8460035" /><ellipse
|
||||||
inkscape:randomized="0"
|
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||||
d="M 23.526004,-19.420579 38.316886,6.1979766 23.526007,31.816533 -6.0557534,31.816535 -20.846635,6.1979795 -6.0557559,-19.420577 Z"
|
id="path937-6-7"
|
||||||
transform="matrix(0.38954086,0,0,0.38954086,37.105474,39.754841)" /><path
|
cx="40.849342"
|
||||||
sodipodi:type="star"
|
cy="66.267334"
|
||||||
style="fill:#bd9098;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
rx="11.398761"
|
||||||
id="path1239-2"
|
ry="9.8460035" /><ellipse
|
||||||
inkscape:flatsided="true"
|
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||||
sodipodi:sides="6"
|
id="path937-6-5"
|
||||||
sodipodi:cx="8.7351255"
|
cx="64.683205"
|
||||||
sodipodi:cy="6.197978"
|
cy="65.908531"
|
||||||
sodipodi:r1="29.58176"
|
rx="11.398761"
|
||||||
sodipodi:r2="25.618555"
|
ry="9.8460035" /><g
|
||||||
sodipodi:arg1="-1.0471976"
|
|
||||||
sodipodi:arg2="-0.52359878"
|
|
||||||
inkscape:rounded="0"
|
|
||||||
inkscape:randomized="0"
|
|
||||||
d="M 23.526004,-19.420579 38.316886,6.1979766 23.526007,31.816533 -6.0557534,31.816535 -20.846635,6.1979795 -6.0557559,-19.420577 Z"
|
|
||||||
transform="matrix(0.38954086,0,0,0.38954086,60.927134,39.754841)" /><path
|
|
||||||
sodipodi:type="star"
|
|
||||||
style="fill:#bd9098;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
||||||
id="path1239-2-2"
|
|
||||||
inkscape:flatsided="true"
|
|
||||||
sodipodi:sides="6"
|
|
||||||
sodipodi:cx="8.7351255"
|
|
||||||
sodipodi:cy="6.197978"
|
|
||||||
sodipodi:r1="29.58176"
|
|
||||||
sodipodi:r2="25.618555"
|
|
||||||
sodipodi:arg1="-1.0471976"
|
|
||||||
sodipodi:arg2="-0.52359878"
|
|
||||||
inkscape:rounded="0"
|
|
||||||
inkscape:randomized="0"
|
|
||||||
d="M 23.526004,-19.420579 38.316886,6.1979766 23.526007,31.816533 -6.0557534,31.816535 -20.846635,6.1979795 -6.0557559,-19.420577 Z"
|
|
||||||
transform="matrix(0.38954086,0,0,0.38954086,60.927134,63.758258)" /><path
|
|
||||||
sodipodi:type="star"
|
|
||||||
style="fill:#bd9098;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
||||||
id="path1239-2-8"
|
|
||||||
inkscape:flatsided="true"
|
|
||||||
sodipodi:sides="6"
|
|
||||||
sodipodi:cx="8.7351255"
|
|
||||||
sodipodi:cy="6.197978"
|
|
||||||
sodipodi:r1="29.58176"
|
|
||||||
sodipodi:r2="25.618555"
|
|
||||||
sodipodi:arg1="-1.0471976"
|
|
||||||
sodipodi:arg2="-0.52359878"
|
|
||||||
inkscape:rounded="0"
|
|
||||||
inkscape:randomized="0"
|
|
||||||
d="M 23.526004,-19.420579 38.316886,6.1979766 23.526007,31.816533 -6.0557534,31.816535 -20.846635,6.1979795 -6.0557559,-19.420577 Z"
|
|
||||||
transform="matrix(0.38954086,0,0,0.38954086,37.105474,63.758258)" /><g
|
|
||||||
id="g386"
|
id="g386"
|
||||||
transform="translate(-0.26879614,-0.27100869)"><g
|
transform="translate(-0.26879614,-0.27100869)"><g
|
||||||
id="g3486-3"
|
id="g3486-3"
|
||||||
|
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 12 KiB |
|
@ -493,7 +493,6 @@ function template_body_below()
|
||||||
echo '
|
echo '
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="khbiseau_bottom_color"></div>
|
|
||||||
</div><!-- #footer -->
|
</div><!-- #footer -->
|
||||||
|
|
||||||
</div><!-- #wrapper -->
|
</div><!-- #wrapper -->
|
||||||
|
|
Loading…
Reference in a new issue