diff options
author | Mika Havela <mika.havela@gmail.com> | 2008-05-21 08:59:58 +0000 |
---|---|---|
committer | Mika Havela <mika.havela@gmail.com> | 2008-05-21 08:59:58 +0000 |
commit | 50364fd4b47c6eb47973f9089595e2bc29d0cabd (patch) | |
tree | 832ed15103a94df0c10ff2d5b140839499702e07 /app/acf-util/password-status-html.lsp | |
parent | 9396b4a55193e8d95261d438b399c57213dafd4a (diff) | |
download | acf-core-50364fd4b47c6eb47973f9089595e2bc29d0cabd.tar.bz2 acf-core-50364fd4b47c6eb47973f9089595e2bc29d0cabd.tar.xz |
Small graphical changes.
Adding horizontal-line on TD's using ICE.css
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1129 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/acf-util/password-status-html.lsp')
-rwxr-xr-x | app/acf-util/password-status-html.lsp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/acf-util/password-status-html.lsp b/app/acf-util/password-status-html.lsp index f3ab6e1..8c542b2 100755 --- a/app/acf-util/password-status-html.lsp +++ b/app/acf-util/password-status-html.lsp @@ -18,17 +18,17 @@ io.write("</span>") <DT><IMG SRC='/static/tango/16x16/apps/system-users.png' HEIGHT='16' WIDTH='16'> <?= name ?></DT> <DD><TABLE> <TR> - <TD><B><?= user.value.userid.label ?></B></TD> - <TD WIDTH='90%'><?= user.value.userid.value ?></TD> + <TD STYLE='border:none;'><B><?= user.value.userid.label ?></B></TD> + <TD STYLE='border:none;' WIDTH='90%'><?= user.value.userid.value ?></TD> </TR><TR> - <TD><B><?= user.value.username.label ?></B></TD> - <TD><?= user.value.username.value ?></TD> + <TD STYLE='border:none;'><B><?= user.value.username.label ?></B></TD> + <TD STYLE='border:none;'><?= user.value.username.value ?></TD> </TR><TR> - <TD><B><?= user.value.roles.label ?></B></TD> - <TD><?= table.concat(user.value.roles.value, " / ") ?></TD> + <TD STYLE='border:none;'><B><?= user.value.roles.label ?></B></TD> + <TD STYLE='border:none;'><?= table.concat(user.value.roles.value, " / ") ?></TD> </TR><TR> - <TD><B>Option</B></TD> - <TD> + <TD STYLE='border:none;'><B>Option</B></TD> + <TD STYLE='border:none;'> [<A HREF='edituser?userid=<?= name ?>'>Edit this account</A>] [<A HREF='deleteuser?userid=<?= name ?>'>Delete this account</A>] [<A HREF='<?= pageinfo.script ?>/acf-util/roles/viewuserroles?userid=<?= name ?>'>View roles for this account</A>] |