diff options
author | linuxpoet <linuxpoet@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-13 05:36:21 +0000 |
---|---|---|
committer | linuxpoet <linuxpoet@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-13 05:36:21 +0000 |
commit | fcfa00d4f31fab52cd008f766e7d949f077c4633 (patch) | |
tree | e015e34e7c8f14a6afa204d3383d7f72fc753ba3 /bin | |
parent | d7c7dffe84c6e2723ce81c5c0d3c89edb33ad87a (diff) |
adding some basic color borders to the add user so it is easier to read
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@79 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mozilla/admin.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/mozilla/admin.pl b/bin/mozilla/admin.pl index e8d9a60b..4e80bf20 100755 --- a/bin/mozilla/admin.pl +++ b/bin/mozilla/admin.pl @@ -314,7 +314,6 @@ sub list_users { } - sub form_header { # if there is a login, get user @@ -663,9 +662,10 @@ sub form_header { $acsheading =~ s/ / /g; $acsheading = qq| - <th align="left" nowrap="nowrap"><input name="$item" class="checkbox" type="checkbox" value="1" $checked /> $acsheading</th>\n|; + <td align="left" nowrap="nowrap" style="background-color: #C7E9F7" colspan="2"> + <input name="$item" class="checkbox" type="checkbox" value="1" $checked /> $acsheading</td><tr><td>\n|; $menuitems .= "$item;"; - $acsdata = "<td>"; + $acsdata = "<td style=\"background-color: #F0F0F0\">"; foreach $item (@{ $acs{$key} }) { |