Layout improvements. Change default inner padding for html_frame_start() from 5 to 0, this

lets us eliminate the white spacing between frames and their contents. Add in a
div.default_container class that has a 5px padding to replace the now not present default
spacing.
This commit is contained in:
Chris Morgan
2007-05-02 01:08:22 +00:00
committed by WineHQ
parent 11ecfa230b
commit 25edd78c73
24 changed files with 106 additions and 28 deletions

View File

@@ -121,6 +121,9 @@ class ObjectManager
$this->checkMethods(array("outputEditor", "getOutputEditorValues",
"update", "create"));
// open up the div for the default container
echo "<div class='default_container'>\n";
// link back to the previous page
echo html_back_link(1, $sBackLink);
@@ -191,6 +194,8 @@ class ObjectManager
echo '</form>';
echo "</div>\n";
}
/* Display help for queue processing */
@@ -304,6 +309,8 @@ class ObjectManager
$oObject = new $this->sClass();
echo "<div class='default_container'>\n";
/* Display errors, if any, and fetch form data */
if($this->displayErrors($sErrors))
{
@@ -328,6 +335,8 @@ class ObjectManager
echo "</div></form>\n";
echo html_back_link(1, $sBackLink);
echo "</div>\n";
}
function handle_anonymous_submission()