diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-29 18:23:26 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-29 18:23:26 +0000 |
| commit | 0293556bc983ef01d6adc3389857d51d617d92aa (patch) | |
| tree | 88802f910ae673e81c551572a8b261df11ed53fd /phpBB/adm | |
| parent | f388c2d96e3ac59390f134a2b69a15589e8870b0 (diff) | |
| download | forums-0293556bc983ef01d6adc3389857d51d617d92aa.tar forums-0293556bc983ef01d6adc3389857d51d617d92aa.tar.gz forums-0293556bc983ef01d6adc3389857d51d617d92aa.tar.bz2 forums-0293556bc983ef01d6adc3389857d51d617d92aa.tar.xz forums-0293556bc983ef01d6adc3389857d51d617d92aa.zip | |
fix layout for internet explorer (needs further tweaks, the permissions screens are looking "horrible" in ie, fine in ff though. ;))
git-svn-id: file:///svn/phpbb/trunk@5759 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
| -rw-r--r-- | phpBB/adm/style/acp_permissions.html | 2 | ||||
| -rw-r--r-- | phpBB/adm/style/admin.css | 8 | ||||
| -rw-r--r-- | phpBB/adm/style/permission_mask.html | 12 |
3 files changed, 12 insertions, 10 deletions
diff --git a/phpBB/adm/style/acp_permissions.html b/phpBB/adm/style/acp_permissions.html index a9c09479a4..1801892218 100644 --- a/phpBB/adm/style/acp_permissions.html +++ b/phpBB/adm/style/acp_permissions.html @@ -351,7 +351,7 @@ <br /><br /> - <fieldset class="quick" style="float: left;"> + <fieldset class="quick" style="float: left; text-align: left;"> {L_PERMISSION_APPLIED_TO_ALL}<br /> <a href="javascript:marklist('set_permissions', 'inherit', true);">{L_MARK_ALL}</a> • <a href="javascript:marklist('set_permissions', 'inherit', false);">{L_UNMARK_ALL}</a> </fieldset> diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 444796f931..5e18443092 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -783,20 +783,20 @@ table.pmask td.name { /* Preset Styles ---------------------------------------- */ -.preset_yes, .preset_custom, .preset_no, .preset_unset { +.preset { width: 60px; } -.preset_yes a span, .preset_custom a span, .preset_no a span, .preset_unset a span { +.preset a { float: left; display: block; width: 100%; height: 20px; cursor: pointer; - background: none; + background: transparent; } -.preset_yes a:hover span, .preset_custom a:hover span, .preset_no a:hover span, .preset_unset a:hover span { +.preset a:hover { background: url("../images/arrow_down.gif") no-repeat 50% 50%; text-decoration: none; } diff --git a/phpBB/adm/style/permission_mask.html b/phpBB/adm/style/permission_mask.html index 67bf9c2a83..8999c2b9da 100644 --- a/phpBB/adm/style/permission_mask.html +++ b/phpBB/adm/style/permission_mask.html @@ -119,6 +119,8 @@ <!-- BEGIN p_mask --> +<div class="clearfix"></div> + <fieldset class="permissions"> <!-- IF p_mask.USER_GROUPS_DEFAULT or p_mask.USER_GROUPS_CUSTOM --> <br /> @@ -166,15 +168,15 @@ </td> <!-- BEGIN category --> <!-- IF p_mask.f_mask.category.S_YES --> - <td class="preset_yes"> + <td class="preset preset_yes"> <!-- ELSEIF p_mask.f_mask.category.S_NO --> - <td class="preset_no"> + <td class="preset preset_no"> <!-- ELSEIF p_mask.f_mask.category.S_UNSET --> - <td class="preset_unset"> + <td class="preset preset_unset"> <!-- ELSE --> - <td class="preset_custom"> + <td class="preset preset_custom"> <!-- ENDIF --> - <a href="javascript:swap_options('{p_mask.S_ROW_COUNT}', '{p_mask.f_mask.S_ROW_COUNT}', '{p_mask.f_mask.category.S_ROW_COUNT}');"><span> </span></a></td> + <a href="javascript:swap_options('{p_mask.S_ROW_COUNT}', '{p_mask.f_mask.S_ROW_COUNT}', '{p_mask.f_mask.category.S_ROW_COUNT}');"><span></span></a></td> <!-- END category --> </tr> <tr class="row3"> |
