Skip to content
Snippets Groups Projects
Commit 25e201be authored by TamaraGunkel's avatar TamaraGunkel
Browse files

fixed overflow of table remaining courses

parent a7266101
No related branches found
No related tags found
No related merge requests found
......@@ -89,11 +89,16 @@ class view_controller {
echo $OUTPUT->heading(get_string('tablecoursesrequiringattention', 'tool_cleanupcourses'), 3);
$table1 = new interaction_attention_table('tool_cleanupcourses_interaction', $requiresinteraction);
echo $OUTPUT->box_start();
$table1->out(50, false);
echo $OUTPUT->box_end();
echo $OUTPUT->box("");
echo $OUTPUT->heading(get_string('tablecoursesremaining', 'tool_cleanupcourses'), 3);
$table2 = new interaction_remaining_table('tool_cleanupcourses_remaining', $arrayofcourseids);
echo $OUTPUT->box_start("cleanupcourses-enable-overflow");
$table2->out(50, false);
echo $OUTPUT->box_end();
}
}
\ No newline at end of file
.cleanupcourses-enable-overflow > .no-overflow {
overflow: initial;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment