mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
MDL-64506 templates: replace spans where and col-x appears
This commit is contained in:
parent
5cac5fa428
commit
5edb0fbcb5
19 changed files with 102 additions and 102 deletions
|
@ -1557,7 +1557,7 @@ class page_wiki_map extends page_wiki {
|
|||
$table->data[] = array(html_writer::link($link->out(false), format_string($lpage->title)));
|
||||
}
|
||||
|
||||
$table_left = $OUTPUT->container(html_writer::table($table), 'col-md-6 span6');
|
||||
$table_left = $OUTPUT->container(html_writer::table($table), 'col-md-6');
|
||||
|
||||
$table = new html_table();
|
||||
$table->attributes['class'] = 'wiki_navigation_to table';
|
||||
|
@ -1574,7 +1574,7 @@ class page_wiki_map extends page_wiki {
|
|||
$table->data[] = array(html_writer::link($viewlink->out(false), format_string($lpage->title)));
|
||||
}
|
||||
}
|
||||
$table_right = $OUTPUT->container(html_writer::table($table), 'col-md-6 span6');
|
||||
$table_right = $OUTPUT->container(html_writer::table($table), 'col-md-6');
|
||||
echo $OUTPUT->container($table_left . $table_right, 'wiki_navigation_container row');
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue