mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Fixing the auth plugins visual. to use the flexible table properly.
Merged from MOODLE_18_STABLE
This commit is contained in:
parent
c57dcb62c2
commit
13abd721f2
@ -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();
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user