mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
In HTML resources the container box collapsed, when floats are used for content. Solved by adding "clearfix" to the classes.
This commit is contained in:
parent
9511c244a9
commit
5393664ee6
1 changed files with 3 additions and 3 deletions
|
@ -80,7 +80,7 @@ function display() {
|
|||
|
||||
print_header();
|
||||
print_simple_box(format_text($resource->alltext, FORMAT_HTML, $formatoptions, $course->id),
|
||||
"center", "", "", "20");
|
||||
"center clearfix", "", "", "20");
|
||||
print_footer($course);
|
||||
} else { /// Make a page and a pop-up window
|
||||
|
||||
|
@ -98,7 +98,7 @@ function display() {
|
|||
echo '</script>';
|
||||
|
||||
if (trim(strip_tags($resource->summary))) {
|
||||
print_simple_box(format_text($resource->summary, FORMAT_MOODLE, $formatoptions, $course->id), "center");
|
||||
print_simple_box(format_text($resource->summary, FORMAT_MOODLE, $formatoptions, $course->id), "center clearfix");
|
||||
}
|
||||
|
||||
$link = "<a href=\"$CFG->wwwroot/mod/resource/view.php?inpopup=true&id={$cm->id}\" onclick=\"this.target='resource{$resource->id}'; return openpopup('/mod/resource/view.php?inpopup=true&id={$cm->id}', 'resource{$resource->id}','{$resource->popup}');\">".format_string($resource->name,true)."</a>";
|
||||
|
@ -120,7 +120,7 @@ function display() {
|
|||
"", "", true, update_module_button($cm->id, $course->id, $this->strresource),
|
||||
navmenu($course, $cm));
|
||||
|
||||
print_simple_box(format_text($resource->alltext, FORMAT_HTML, $formatoptions, $course->id), "center", "", "", "20");
|
||||
print_simple_box(format_text($resource->alltext, FORMAT_HTML, $formatoptions, $course->id), "center clearfix", "", "", "20");
|
||||
|
||||
$strlastmodified = get_string("lastmodified");
|
||||
echo "<div class=\"modified\">$strlastmodified: ".userdate($resource->timemodified)."</div>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue