mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
MDL-8922 : Fixed a number of xhtml simple issues, but heaps of hard-core fixes yet to do.
This commit is contained in:
parent
9251b26fe8
commit
e92751686f
@ -577,8 +577,10 @@ class block_base {
|
||||
|
||||
if (is_file($CFG->dirroot .'/blocks/'. $this->name() .'/config_instance.html')) {
|
||||
print_simple_box_start('center', '', '', 5, 'blockconfiginstance');
|
||||
print_location_comment(__FILE__,__LINE__);
|
||||
include($CFG->dirroot .'/blocks/'. $this->name() .'/config_instance.html');
|
||||
print_simple_box_end();
|
||||
print_location_comment(__FILE__,__LINE__);
|
||||
} else {
|
||||
notice(get_string('blockconfigbad'), str_replace('blockaction=', 'dummy=', qualified_me()));
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ $row[] = new tabobject('managefeeds', $script,
|
||||
$tabs[] = $row;
|
||||
|
||||
/// Print out the tabs and continue!
|
||||
print '<div align="center">';
|
||||
print "\n".'<div class="tabs">'."\n";
|
||||
print_tabs($tabs, $currentaction);
|
||||
print '</div>';
|
||||
?>
|
||||
print '</div>' . print_location_comment(__FILE__, __LINE__, true);
|
||||
?>
|
||||
|
@ -1183,8 +1183,24 @@ a.skip-block, .skip-block {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.blockconfigtable td.label {
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.blockconfigtable td.value {
|
||||
text-align: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.blockconfigtable td.submit {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.blockconfiginstancecontent .tabs {
|
||||
margin-bottom: 0px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.block_messages .content {
|
||||
@ -1211,7 +1227,10 @@ a.skip-block, .skip-block {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
|
||||
#rss_table {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
/***
|
||||
*** Blogs
|
||||
***/
|
||||
|
Loading…
x
Reference in New Issue
Block a user