diff options
Diffstat (limited to 'phpBB/adm/style/overall_header.html')
-rw-r--r-- | phpBB/adm/style/overall_header.html | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html index d75d89ab13..4cc4dbd678 100644 --- a/phpBB/adm/style/overall_header.html +++ b/phpBB/adm/style/overall_header.html @@ -129,11 +129,17 @@ function switch_menu() main.style.width = '93%'; menu_state = 'hidden'; menu.style.display = 'none'; - toggle.style.left = '0'; toggle.style.width = '20px'; handle.style.backgroundImage = 'url(images/toggle.gif)'; - handle.style.backgroundPosition = '100% 50%'; handle.style.backgroundRepeat = 'no-repeat'; + + <!-- IF S_CONTENT_DIRECTION eq 'rtl' --> + handle.style.backgroundPosition = '0% 50%'; + toggle.style.left = '96%'; + <!-- ELSE --> + handle.style.backgroundPosition = '100% 50%'; + toggle.style.left = '0'; + <!-- ENDIF --> break; // show @@ -141,11 +147,17 @@ function switch_menu() main.style.width = '76%'; menu_state = 'shown'; menu.style.display = 'block'; - toggle.style.left = '15%'; toggle.style.width = '5%'; handle.style.backgroundImage = 'url(images/toggle.gif)'; - handle.style.backgroundPosition = '0% 50%'; handle.style.backgroundRepeat = 'no-repeat'; + + <!-- IF S_CONTENT_DIRECTION eq 'rtl' --> + handle.style.backgroundPosition = '100% 50%'; + toggle.style.left = '75%'; + <!-- ELSE --> + handle.style.backgroundPosition = '0% 50%'; + toggle.style.left = '15%'; + <!-- ENDIF --> break; } } |