diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:25:36 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:25:36 -0600 |
commit | 38141865926730506f55b62a499cb548b94d4bfe (patch) | |
tree | 0ba8c493152ba9327c4803783e867cb4a746f5f0 /modules/user/controllers/admin_users.php | |
parent | e3f90a889d5bb4cb1214445bbf5be8c9815d8733 (diff) |
Created user.css. Moved user-related form css to the new sheet.
Diffstat (limited to 'modules/user/controllers/admin_users.php')
-rw-r--r-- | modules/user/controllers/admin_users.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/user/controllers/admin_users.php b/modules/user/controllers/admin_users.php index 5950c358..a34d152a 100644 --- a/modules/user/controllers/admin_users.php +++ b/modules/user/controllers/admin_users.php @@ -313,7 +313,6 @@ class Admin_Users_Controller extends Admin_Controller { static function _get_user_add_form_admin() { $form = new Forge("admin/users/add_user", "", "post", array("id" => "g-add-user-form")); - $form->set_attr('class', "g-narrow"); $group = $form->group("add_user")->label(t("Add User")); $group->input("name")->label(t("Username"))->id("g-username") ->error_messages("in_use", t("There is already a user with that username")); @@ -372,7 +371,7 @@ class Admin_Users_Controller extends Admin_Controller { private function _get_group_add_form_admin() { $form = new Forge("admin/users/add_group", "", "post", array("id" => "g-add-group-form")); - $form->set_attr('class', "g-narrow"); + $form->set_attr('class', "g-one-quarter"); $form_group = $form->group("add_group")->label(t("Add Group")); $form_group->input("name")->label(t("Name"))->id("g-name"); $form_group->inputs["name"]->error_messages( |