fix teacher and parent pages text font
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 48s
Tests / PHPUnit (push) Successful in 1m18s

This commit is contained in:
root
2026-08-26 21:43:37 -04:00
parent 9676261d65
commit 7b86cf5218
25 changed files with 66 additions and 34 deletions
+4 -5
View File
@@ -29,7 +29,6 @@
th, td {
vertical-align: middle !important;
font-family: Arial, sans-serif;
}
.table thead th {
@@ -53,18 +52,18 @@
<div class="fullwidth-wrap px-3 px-md-4 mb-5 class-block <?= ((int)$sectionId === $activeClassId) ? '' : 'd-none'; ?>"
data-class-section-id="<?= (int)$sectionId; ?>">
<div class="class-header text-center mx-auto mb-4">
<h4 class="text-dark" style="font-family: Arial, sans-serif;">Students Class List</h4>
<h4 class="text-dark">Students Class List</h4>
<?php if (!empty($mains)): ?>
<h5 class="text-dark" style="font-family: Arial, sans-serif; margin-bottom: 5px;">
<h5 class="text-dark" style="margin-bottom: 5px;">
Teachers: <?= esc(implode(', ', $mains)); ?>
</h5>
<?php endif; ?>
<?php if (!empty($tas)): ?>
<h5 class="text-dark" style="font-family: Arial, sans-serif; margin-bottom: 5px;">
<h5 class="text-dark" style="margin-bottom: 5px;">
Teacher Assistants: <?= esc(implode(', ', $tas)); ?>
</h5>
<?php endif; ?>
<h5 class="text-dark" style="font-family: Arial, sans-serif; margin-bottom: 5px;">
<h5 class="text-dark" style="margin-bottom: 5px;">
Grade-Section: <?= esc($class['class_section_name']); ?>
</h5>
</div>