? .project Index: modules/user/user.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.admin.inc,v retrieving revision 1.91 diff -u -p -r1.91 user.admin.inc --- modules/user/user.admin.inc 2 Dec 2009 17:04:25 -0000 1.91 +++ modules/user/user.admin.inc 27 Dec 2009 22:48:47 -0000 @@ -860,14 +860,14 @@ function theme_user_admin_new_role($vari $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => 2)); foreach (user_roles() as $rid => $name) { $edit_permissions = l(t('edit permissions'), 'admin/config/people/permissions/' . $rid); - if (!in_array($rid, array(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID))) { - $rows[] = array($name, l(t('edit role'), 'admin/config/people/roles/edit/' . $rid), $edit_permissions); + if (in_array($rid, array(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID))) { + $rows[] = array(t('!name %locked', array('!name' => $name, '%locked' => t('(locked)'))), '', $edit_permissions); } else { - $rows[] = array($name, t('locked'), $edit_permissions); + $rows[] = array($name, l(t('edit role'), 'admin/config/people/roles/edit/' . $rid), $edit_permissions); } } - $rows[] = array(drupal_render($form['name']), array('data' => drupal_render($form['submit']), 'colspan' => 2)); + $rows[] = array(array('data' => drupal_render($form['name']) . drupal_render($form['submit']), 'colspan' => 3, 'class' => 'edit-name')); $output = drupal_render_children($form); $output .= theme('table', array('header' => $header, 'rows' => $rows)); Index: modules/user/user.css =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.css,v retrieving revision 1.15 diff -u -p -r1.15 user.css --- modules/user/user.css 17 Nov 2009 02:50:41 -0000 1.15 +++ modules/user/user.css 27 Dec 2009 22:48:47 -0000 @@ -29,6 +29,18 @@ padding-bottom: .5em; } +/** + * Override default textfield float to put the "Add role" button next to + * the input textfield. + */ +#user-admin-new-role td.edit-name { + clear: both; +} +#user-admin-new-role .form-item-name { + float: left; + margin-right: 1em; +} + /* Generated by user.module but used by profile.module: */ .profile { clear: both;