Minor improvements (#790)

This commit is contained in:
Roman Kelesidis 2023-06-08 10:49:51 +07:00 committed by GitHub
commit 214c361d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 34 additions and 19 deletions

View file

@ -217,6 +217,7 @@
<!-- END switch_mod_option --> <!-- END switch_mod_option -->
</table> </table>
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="bottom_info"> <div class="bottom_info">
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
@ -224,6 +225,7 @@
<div class="clear"></div> <div class="clear"></div>
</div> </div>
</div><!--/bottom_info--> </div><!--/bottom_info-->
<!-- ENDIF -->
<!-- IF PENDING_USERS --> <!-- IF PENDING_USERS -->
<table class="forumline"> <table class="forumline">
@ -304,6 +306,7 @@
</tfoot> </tfoot>
</table> </table>
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="bottom_info"> <div class="bottom_info">
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
@ -311,6 +314,7 @@
<div class="clear"></div> <div class="clear"></div>
</div> </div>
</div> </div>
<!-- ENDIF -->
<!-- ENDIF / RELEASES --> <!-- ENDIF / RELEASES -->
<!--========================================================================--> <!--========================================================================-->

View file

@ -60,11 +60,13 @@
<div class="bottom_info"> <div class="bottom_info">
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<!-- ENDIF -->
<div class="spacer_4"></div> <div class="spacer_4"></div>

View file

@ -106,11 +106,13 @@
<div class="spacer_6"></div> <div class="spacer_6"></div>
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<!-- ENDIF -->
<div class="spacer_4"></div> <div class="spacer_4"></div>

View file

@ -218,11 +218,13 @@ function show_edit_options ()
<div class="bottom_info"> <div class="bottom_info">
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<!-- ENDIF -->
<div class="spacer_4"></div> <div class="spacer_4"></div>

View file

@ -447,11 +447,13 @@ $(function(){
<div class="bottom_info"> <div class="bottom_info">
<!-- IF PAGINATION and PAGE_NUMBER -->
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<!-- ENDIF -->
<div class="spacer_4"></div> <div class="spacer_4"></div>

View file

@ -615,7 +615,7 @@ td.topic_id { cursor: pointer; }
<!--bottom_info--> <!--bottom_info-->
<div class="bottom_info"> <div class="bottom_info">
<!-- IF PAGINATION --> <!-- IF PAGINATION and PAGE_NUMBER -->
<div class="nav"> <div class="nav">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>

View file

@ -535,16 +535,31 @@ function build_poll_add_form (src_el)
<!-- IF HIDE_POST_IMG --><script type="text/javascript">$('img.postImg').remove();</script><!-- ENDIF --> <!-- IF HIDE_POST_IMG --><script type="text/javascript">$('img.postImg').remove();</script><!-- ENDIF -->
<!-- IF HIDE_SMILE --><script type="text/javascript">$('img.smile').remove();</script><!-- ENDIF --> <!-- IF HIDE_SMILE --><script type="text/javascript">$('img.smile').remove();</script><!-- ENDIF -->
<!-- IF PAGINATION and PAGE_NUMBER -->
<table id="pagination" class="topic" cellpadding="0" cellspacing="0"> <table id="pagination" class="topic" cellpadding="0" cellspacing="0">
<tr> <tr>
<td class="nav pad_6 {PG_ROW_CLASS}"> <td class="nav pad_6 {PG_ROW_CLASS}">
<p style="float: left">{PAGE_NUMBER}</p> <p style="float: left">{PAGE_NUMBER}</p>
<p style="float: right">{PAGINATION}</p> <p style="float: right">{PAGINATION}</p>
</td> </td>
</tr> </tr>
</table><!--/pagination--> </table><!--/pagination-->
<!-- ENDIF -->
<table class="topic" cellpadding="0" cellspacing="0">
<tr>
<td class="catBottom med">
<form method="post" action="{S_POST_DAYS_ACTION}">
{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS}&nbsp;
{S_SELECT_POST_ORDER}&nbsp;
<input type="submit" value="{L_GO}" class="lite" name="submit" />
</form>
</td>
</tr>
</table>
<!-- IF QUICK_REPLY --> <!-- IF QUICK_REPLY -->
<br>
<form action="{QR_POST_ACTION}" method="post" name="post" onsubmit="if(checkForm(this)){ dis_submit_btn(); }else{ return false; }"> <form action="{QR_POST_ACTION}" method="post" name="post" onsubmit="if(checkForm(this)){ dis_submit_btn(); }else{ return false; }">
<input type="hidden" name="mode" value="reply" /> <input type="hidden" name="mode" value="reply" />
<input type="hidden" name="t" value="{QR_TOPIC_ID}" /> <input type="hidden" name="t" value="{QR_TOPIC_ID}" />
@ -580,18 +595,6 @@ function build_poll_add_form (src_el)
</form> </form>
<!-- ENDIF / QUICK_REPLY --> <!-- ENDIF / QUICK_REPLY -->
<table class="topic" cellpadding="0" cellspacing="0">
<tr>
<td class="catBottom med">
<form method="post" action="{S_POST_DAYS_ACTION}">
{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS}&nbsp;
{S_SELECT_POST_ORDER}&nbsp;
<input type="submit" value="{L_GO}" class="lite" name="submit" />
</form>
</td>
</tr>
</table>
<table cellpadding="0" class="w100" style="padding-top: 2px;"> <table cellpadding="0" class="w100" style="padding-top: 2px;">
<tr> <tr>
<td valign="top"> <td valign="top">