mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-03 15:29:12 +01:00
[ticket/15610] Improving UI of Board Statistics in ACP
Master Improving UI of Board Statistics in ACP Statistics table was divided into two in acp_main.html. PHPBB3-15610
This commit is contained in:
parent
341962ae74
commit
9b5b058925
@ -185,35 +185,35 @@
|
||||
<form id="action_online_form" method="post" action="{U_ACTION}" data-ajax="true">
|
||||
<dl>
|
||||
<dt><label for="action_online">{L_RESET_ONLINE}</label><br /><span> </span></dt>
|
||||
<dd><input type="hidden" name="action" value="online" /><input class="runbutton" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="online" /><input class="button2" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
<form id="action_date_form" method="post" action="{U_ACTION}" data-ajax="true">
|
||||
<dl>
|
||||
<dt><label for="action_date">{L_RESET_DATE}</label><br /><span> </span></dt>
|
||||
<dd><input type="hidden" name="action" value="date" /><input class="runbutton" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="date" /><input class="button2" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
<form id="action_stats_form" method="post" action="{U_ACTION}">
|
||||
<dl>
|
||||
<dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt>
|
||||
<dd><input type="hidden" name="action" value="stats" /><input class="runbutton" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="stats" /><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
<form id="action_user_form" method="post" action="{U_ACTION}">
|
||||
<dl>
|
||||
<dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt>
|
||||
<dd><input type="hidden" name="action" value="user" /><input class="runbutton" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="user" /><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
<form id="action_db_track_form" method="post" action="{U_ACTION}">
|
||||
<dl>
|
||||
<dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt>
|
||||
<dd><input type="hidden" name="action" value="db_track" /><input class="runbutton" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="db_track" /><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
@ -221,7 +221,7 @@
|
||||
<form id="action_purge_sessions_form" method="post" action="{U_ACTION}" data-ajax="true">
|
||||
<dl>
|
||||
<dt><label for="action_purge_sessions">{L_PURGE_SESSIONS}</label><br /><span>{L_PURGE_SESSIONS_EXPLAIN}</span></dt>
|
||||
<dd><input type="hidden" name="action" value="purge_sessions" /><input class="runbutton" type="submit" id="action_purge_sessions" name="action_purge_sessions" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="purge_sessions" /><input class="button2" type="submit" id="action_purge_sessions" name="action_purge_sessions" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
<!-- ENDIF -->
|
||||
@ -229,7 +229,7 @@
|
||||
<form id="action_purge_cache_form" method="post" action="{U_ACTION}" data-ajax="true">
|
||||
<dl>
|
||||
<dt><label for="action_purge_cache">{L_PURGE_CACHE}</label><br /><span>{L_PURGE_CACHE_EXPLAIN}</span></dt>
|
||||
<dd><input type="hidden" name="action" value="purge_cache" /><input class="runbutton" type="submit" id="action_purge_cache" name="action_purge_cache" value="{L_RUN}" /></dd>
|
||||
<dd><input type="hidden" name="action" value="purge_cache" /><input class="button2" type="submit" id="action_purge_cache" name="action_purge_cache" value="{L_RUN}" /></dd>
|
||||
</dl>
|
||||
</form>
|
||||
|
||||
|
@ -1555,17 +1555,6 @@ a.button2, input.button2 {
|
||||
border: 1px solid #666666;
|
||||
}
|
||||
|
||||
a.runbutton,
|
||||
input.runbutton {
|
||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 0.85em;
|
||||
color: #000000;
|
||||
border-radius: 4px;
|
||||
width: auto !important;
|
||||
padding: 1px 3px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* <a> button in the style of the form buttons */
|
||||
a.button1, a.button1:link, a.button1:visited, a.button1:active,
|
||||
a.button2, a.button2:link, a.button2:visited, a.button2:active {
|
||||
@ -1574,15 +1563,6 @@ a.button2, a.button2:link, a.button2:visited, a.button2:active {
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
a.runbutton,
|
||||
a.runbutton:link,
|
||||
a.runbutton:visited,
|
||||
a.runbutton:active {
|
||||
text-decoration: none;
|
||||
color: #ffffff;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
/* Hover states */
|
||||
a.button1:hover, input.button1:hover,
|
||||
a.button2:hover, input.button2:hover {
|
||||
@ -1591,11 +1571,6 @@ a.button2:hover, input.button2:hover {
|
||||
color: #BC2A4D;
|
||||
}
|
||||
|
||||
a.runbutton:hover,
|
||||
input.runbutton:hover {
|
||||
opacity:0.75;
|
||||
}
|
||||
|
||||
input.disabled {
|
||||
font-weight: normal;
|
||||
color: #666666;
|
||||
|
Loading…
x
Reference in New Issue
Block a user