mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
MDL-74091 core_question: 'table-responsive' qtable avoids overlap.
This commit is contained in:
parent
34ce1463cc
commit
96581087a9
@ -900,6 +900,7 @@ table.quizreviewsummary td.cell {
|
||||
table#categoryquestions {
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
overflow-x: visible;
|
||||
}
|
||||
|
||||
#categoryquestions .iconcol {
|
||||
|
@ -1103,7 +1103,7 @@ class view {
|
||||
*/
|
||||
protected function print_table($questions): void {
|
||||
// Start of the table.
|
||||
echo \html_writer::start_tag('table', ['id' => 'categoryquestions']);
|
||||
echo \html_writer::start_tag('table', ['id' => 'categoryquestions', 'class' => 'table-responsive']);
|
||||
|
||||
// Prints the table header.
|
||||
echo \html_writer::start_tag('thead');
|
||||
|
Loading…
x
Reference in New Issue
Block a user