diff options
author | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-08-30 19:47:36 +0000 |
---|---|---|
committer | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-08-30 19:47:36 +0000 |
commit | 4354729066572898465d3e6a9b4cc5f47ff4e927 (patch) | |
tree | 6fd0350e8cd716def49f71d410b643f8f0e2e873 /phpBB/adm/style/acp_permission_roles.html | |
parent | 996d946148e8d25c646dfc8380e0373e85aac2e7 (diff) | |
download | forums-4354729066572898465d3e6a9b4cc5f47ff4e927.tar forums-4354729066572898465d3e6a9b4cc5f47ff4e927.tar.gz forums-4354729066572898465d3e6a9b4cc5f47ff4e927.tar.bz2 forums-4354729066572898465d3e6a9b4cc5f47ff4e927.tar.xz forums-4354729066572898465d3e6a9b4cc5f47ff4e927.zip |
Some interface work on the ACP:
- #3774 and more
git-svn-id: file:///svn/phpbb/trunk@6338 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/acp_permission_roles.html')
-rw-r--r-- | phpBB/adm/style/acp_permission_roles.html | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_permission_roles.html b/phpBB/adm/style/acp_permission_roles.html index 0eca7e9273..f5676b0986 100644 --- a/phpBB/adm/style/acp_permission_roles.html +++ b/phpBB/adm/style/acp_permission_roles.html @@ -173,10 +173,10 @@ <form id="acp_roles" method="post" action="{U_ACTION}"> <table cellspacing="1"> - <col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" /> + <col class="col2" /><col class="col2" /><col class="col1" /><col class="col2" /><col class="col2" /> <thead> <tr> - <th style="width: 50%">{L_ROLE_NAME}</th> + <th>{L_ROLE_NAME}</th> <th colspan="2">{L_OPTIONS}</th> </tr> </thead> @@ -186,10 +186,21 @@ <td style="vertical-align: top;"><b>{roles.ROLE_NAME}</b> <!-- IF roles.ROLE_DESCRIPTION --><br /><span>{roles.ROLE_DESCRIPTION}</span><!-- ENDIF --> </td> - <td style="vertical-align: top; white-space: nowrap;"><!-- IF roles.U_DISPLAY_ITEMS --><a href="{roles.U_DISPLAY_ITEMS}">{L_VIEW_ASSIGNED_ITEMS}</a><!-- ELSE -->{L_VIEW_ASSIGNED_ITEMS}<!-- ENDIF --></td> - <td style="vertical-align: top; white-space: nowrap;"> - <!-- IF not roles.S_FIRST_ROW --><a href="{roles.U_MOVE_UP}">{ICON_MOVE_UP}</a> <!-- ENDIF --> - <!-- IF not roles.S_LAST_ROW --><a href="{roles.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> <!-- ENDIF --> + <td style="width: 30%; text-align: center; vertical-align: top; white-space: nowrap;"><!-- IF roles.U_DISPLAY_ITEMS --><a href="{roles.U_DISPLAY_ITEMS}">{L_VIEW_ASSIGNED_ITEMS}</a><!-- ELSE -->{L_VIEW_ASSIGNED_ITEMS}<!-- ENDIF --></td> + <td style="width: 80px; text-align: right; vertical-align: top; white-space: nowrap;"> + <!-- IF roles.S_FIRST_ROW && not roles.S_LAST_ROW --> + {ICON_MOVE_UP_DISABLED} + <a href="{roles.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> + <!-- ELSEIF not roles.S_FIRST_ROW && not roles.S_LAST_ROW--> + <a href="{roles.U_MOVE_UP}">{ICON_MOVE_UP}</a> + <a href="{roles.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a> + <!-- ELSEIF roles.S_LAST_ROW && not roles.S_FIRST_ROW --> + <a href="{roles.U_MOVE_UP}">{ICON_MOVE_UP}</a> + {ICON_MOVE_DOWN_DISABLED} + <!-- ELSE --> + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN_DISABLED} + <!-- ENDIF --> <a href="{roles.U_EDIT}" title="{L_EDIT_ROLE}">{ICON_EDIT}</a> <a href="{roles.U_REMOVE}" title="{L_REMOVE_ROLE}">{ICON_DELETE}</a> </td> |