From: stronk7 Date: Thu, 22 Feb 2007 23:01:47 +0000 (+0000) Subject: Fixing the auth plugins visual. to use the flexible table properly. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=13abd721f2cbea0f3d62349c3f8c063cfb69f12d;p=moodle.git Fixing the auth plugins visual. to use the flexible table properly. Merged from MOODLE_18_STABLE --- diff --git a/admin/auth.php b/admin/auth.php index 7dbd382301..8e0c9ec659 100644 --- a/admin/auth.php +++ b/admin/auth.php @@ -166,15 +166,10 @@ foreach ($authsavailable as $auth) { // build the display table $table = new flexible_table('auth_admin_table'); $table->define_columns(array('name', 'enable', 'order', 'settings')); -$table->column_style('enable', 'text-align', 'center'); -$table->column_style('order', 'text-align', 'center'); -$table->column_style('settings', 'text-align', 'center'); $table->define_headers(array($txt->name, $txt->enable, $txt->updown, $txt->settings)); $table->define_baseurl("{$CFG->wwwroot}/{$CFG->admin}/auth.php"); $table->set_attribute('id', 'blocks'); -$table->set_attribute('class', 'generaltable generalbox'); -$table->set_attribute('style', 'margin:auto;'); -$table->set_attribute('cellpadding', '5'); +$table->set_attribute('class', 'generaltable generalbox boxaligncenter boxwidthwide'); $table->setup(); //add always enabled plugins first @@ -247,7 +242,7 @@ if ($status !== '') { print_simple_box(get_string('configauthenticationplugins', 'admin'), 'center', '700'); -print_table($table); +$table->print_html(); //////////////////////////////////////////////////////////////////////////////// diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index 4a89da9bc8..c6518dea25 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -689,7 +689,8 @@ body#admin-index .c1 { body#admin-blocks table.generaltable th, body#admin-filters table.generaltable th, -body#admin-modules table.generaltable th +body#admin-modules table.generaltable th, +body#admin-auth table.generaltable th { white-space: nowrap; } @@ -705,7 +706,9 @@ body#admin-blocks table.generaltable td.cell, body#admin-filters table.generaltable th, body#admin-filters table.generaltable td.cell, body#admin-modules table.generaltable th, -body#admin-modules table.generaltable td.cell +body#admin-modules table.generaltable td.cell, +body#admin-auth table.generaltable th, +body#admin-auth table.generaltable td.cell { padding: 4px; text-align: center; @@ -717,7 +720,9 @@ body#admin-blocks table.generaltable td.c0, body#admin-filters table.generaltable th.c0, body#admin-filters table.generaltable td.c0, body#admin-modules table.generaltable th.c0, -body#admin-modules table.generaltable td.c0 +body#admin-modules table.generaltable td.c0, +body#admin-auth table.generaltable th.c0, +body#admin-auth table.generaltable td.c0 { text-align: left; }