Skip to content

Commit

Permalink
v1.6.03 - update CSS class names
Browse files Browse the repository at this point in the history
  • Loading branch information
SKuipers committed Feb 6, 2025
1 parent 4d8398d commit bc1d0e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ATL/atl_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
echo __('Choose A Student');
echo '</h3>';

$form = Form::create("filter", $session->get('absoluteURL').'/index.php', 'get', 'noIntBorder fullWidth');
$form = Form::create("filter", $session->get('absoluteURL').'/index.php', 'get', 'noIntBorder w-full');
$form->setFactory(DatabaseFormFactory::create($pdo));

$form->addHiddenValue('q', '/modules/ATL/atl_view.php');
Expand Down Expand Up @@ -144,7 +144,7 @@

$gibbonPersonID = (isset($_GET['gibbonPersonID']))? $_GET['gibbonPersonID'] : null;

$form = Form::create("filter", $session->get('absoluteURL')."/index.php", "get", "noIntBorder fullWidth standardForm");
$form = Form::create("filter", $session->get('absoluteURL')."/index.php", "get", "noIntBorder w-full standardForm");
$form->setFactory(DatabaseFormFactory::create($pdo));

$form->addHiddenValue('q', '/modules/ATL/atl_view.php');
Expand Down
2 changes: 1 addition & 1 deletion ATL/atl_write_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
$form->addRow()->addHeading(__('Students'));
$form->addRow()->addAlert(__('There are no records to display.'), 'error');
} else {
$table = $form->addRow()->setClass('p-0')->addTable()->setClass('smallIntBorder fullWidth colorOddEven noMargin noPadding noBorder');
$table = $form->addRow()->setClass('p-0')->addTable()->setClass('smallIntBorder w-full colorOddEven noMargin noPadding noBorder');

$completeText = !empty($values['completeDate'])? __('Marked on').' '.Format::date($values['completeDate']) : __('Unmarked');

Expand Down
2 changes: 1 addition & 1 deletion ATL/moduleFunctions.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function sidebarExtra($guid, $connection2, $gibbonCourseClassID, $mode = 'manage
$row->addSelectClass('gibbonCourseClassID', $session->get('gibbonSchoolYearID'), $session->get('gibbonPersonID'))
->selected($gibbonCourseClassID)
->placeholder()
->setClass('fullWidth');
->setClass('w-full');
$row->addSubmit(__('Go'));

$output .= $form->getOutput();
Expand Down

0 comments on commit bc1d0e4

Please sign in to comment.