mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-23 04:38:42 +00:00
fix: 94ac59929e
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
47e64d8a24
commit
5c26699829
@ -441,7 +441,7 @@ EOD;
|
|||||||
$config = array(
|
$config = array(
|
||||||
'judge_time_hidden' => '',
|
'judge_time_hidden' => '',
|
||||||
'table_config' => array(
|
'table_config' => array(
|
||||||
'div_classes' => array('card', 'mb-3', 'overflow-auto'),
|
'div_classes' => array('card', 'mb-3', 'table-responsive'),
|
||||||
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -148,7 +148,7 @@ d-inline-block
|
|||||||
'judge_time_hidden' => '',
|
'judge_time_hidden' => '',
|
||||||
'table_config' => (isset($REQUIRE_LIB['bootstrap5'])
|
'table_config' => (isset($REQUIRE_LIB['bootstrap5'])
|
||||||
? array(
|
? array(
|
||||||
'div_classes' => array('card', 'mb-3', 'overflow-auto'),
|
'div_classes' => array('card', 'mb-3', 'table-responsive'),
|
||||||
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
||||||
)
|
)
|
||||||
: array()
|
: array()
|
||||||
|
@ -119,7 +119,7 @@ d-inline-block
|
|||||||
'judge_time_hidden' => '',
|
'judge_time_hidden' => '',
|
||||||
'table_config' => (isset($REQUIRE_LIB['bootstrap5'])
|
'table_config' => (isset($REQUIRE_LIB['bootstrap5'])
|
||||||
? array(
|
? array(
|
||||||
'div_classes' => array('card', 'mb-3', 'overflow-auto'),
|
'div_classes' => array('card', 'mb-3', 'table-responsive'),
|
||||||
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
'table_classes' => array('table', 'mb-0', 'uoj-table', 'text-center')
|
||||||
)
|
)
|
||||||
: array()
|
: array()
|
||||||
|
@ -1165,7 +1165,8 @@ function showStandings() {
|
|||||||
col_tr += '</tr>';
|
col_tr += '</tr>';
|
||||||
return col_tr;
|
return col_tr;
|
||||||
}, {
|
}, {
|
||||||
table_classes: ['table', 'table-bordered', 'overflow-auto', 'text-center', 'uoj-table', 'uoj-standings-table', 'mb-0'],
|
div_classes: ['table-responsive'],
|
||||||
|
table_classes: ['table', 'table-bordered', 'text-center', 'uoj-table', 'uoj-standings-table', 'mb-0'],
|
||||||
page_len: 100,
|
page_len: 100,
|
||||||
print_after_table: function() {
|
print_after_table: function() {
|
||||||
return '<div class="card-footer bg-transparent text-end text-muted">' + uojLocale("contests::n participants", standings.length) + '</div><script>if (window.MathJax) window.MathJax.typeset();</scr' + 'ipt>';
|
return '<div class="card-footer bg-transparent text-end text-muted">' + uojLocale("contests::n participants", standings.length) + '</div><script>if (window.MathJax) window.MathJax.typeset();</scr' + 'ipt>';
|
||||||
|
Loading…
Reference in New Issue
Block a user