diff options
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/views/admin_groups.html.php | 2 | ||||
-rw-r--r-- | modules/user/views/admin_users.html.php | 65 |
2 files changed, 1 insertions, 66 deletions
diff --git a/modules/user/views/admin_groups.html.php b/modules/user/views/admin_groups.html.php index a2ad652f..c1b7dbde 100644 --- a/modules/user/views/admin_groups.html.php +++ b/modules/user/views/admin_groups.html.php @@ -6,7 +6,7 @@ </div> <ul> <? foreach ($groups as $i => $group): ?> - <li> + <li class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>"> <?= $group->name ?> <a href="groups/edit_form/<?= $group->id ?>" class="gDialogLink" title="<?= t("Edit group") ?>"><?= t("edit") ?></a> diff --git a/modules/user/views/admin_users.html.php b/modules/user/views/admin_users.html.php index b4673aec..8b585a36 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -1,69 +1,4 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<style> - .gButtonLink { - border-width: 1px; - border-style: solid; - border-color: #ececec #c8c8c8 #c8c8c8 #ececec; - background-image: url('/gallery3/themes/admin_default/images/backg-buttonlink.png'); - padding: .2em .3em; - font-weight: bold; - } - .gButtonLink:hover { - border-color: #c8c8c8 #ececec #ececec #c8c8c8; - } - .gBlock h2 a { - font-size: .7em; - float: right; - position: relative; - top: -1.69em; - } - - .gUserAdminList li { - padding: .4em .4em .3em .4em; - position: relative; - } - .gUserAdminList li img { - width: 20px; - height: 20px; - cursor: move; - } - .gFirstRow { - border-bottom: 1px solid grey; - padding-bottom: .5em; - padding-left: 30px !important; - } - .gOddRow { - background-color: #f1f1f1; - } - .gActions { - position: absolute; - left: 400px; - } - .gActions a, .gActions span { - margin-right: 40px; - } - .gPanel { - display: none; - padding: 1em; - } - .gPanel legend { - display: none; - } - .gPanel fieldset { - border: none; - } - - li.gGroup { - float: left; - display: block; - width: 200px; - height: 200px; - border: 1px solid gray; - padding: .5em; - margin-right: 1em; - } -</style> - <div class="gBlock"> <h2> <?= t("User Admin") ?> |