chore: remove table-striped class
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-10-08 08:50:23 +08:00
parent a7da66b04f
commit a97a05553b
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
7 changed files with 7 additions and 7 deletions

View File

@ -527,7 +527,7 @@ $('#contest-countdown').countdown(<?= $contest['end_time']->getTimestamp() - UOJ
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -196,7 +196,7 @@ table-hover
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -280,7 +280,7 @@ EOD;
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -172,7 +172,7 @@
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -374,7 +374,7 @@ $('#contest-countdown').countdown(<?= $contest['end_time']->getTimestamp() - UOJ
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -237,7 +237,7 @@ EOD
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>

View File

@ -44,7 +44,7 @@ text-decoration-none text-body
<script> <script>
$(document).ready(function() { $(document).ready(function() {
$('.markdown-body table').each(function() { $('.markdown-body table').each(function() {
$(this).addClass('table table-bordered table-striped'); $(this).addClass('table table-bordered');
}); });
}); });
</script> </script>