From: Joas S. <nic...@ph...> - 2009-08-18 14:04:33
|
Author: nickvergessen Date: Tue Aug 18 15:03:43 2009 New Revision: 10016 Log: Fix Bug #49945 - Correctly orientate Control-Panel-Navigation background-image on RTL languages. Authorised by: AcydBurn Added: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/bg_menu_rtl.gif (with props) Modified: branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/colours.css Modified: branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html (original) --- branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html Tue Aug 18 15:03:43 2009 *************** *** 197,202 **** --- 197,203 ---- <li>[Fix] Correctly redirect on MCP main page after posts approval/disapproval from it. (Bug #49625)</li> <li>[Fix] Do not display topic approval status image for shadow topic if a user is not a moderator in the forum the topic has been moved to. (Bug #43295)</li> <li>[Fix] Fix email problems on servers with PHP installations not accepting RFC-compliant subject string passed to the the mail()-function. (Bug #46725)</li> + <li>[Fix] Correctly orientate Control-Panel-Navigation background-image on RTL languages. (Bug #49945)</li> <li>[Change] submit_post() now accepts force_approved_state key passed to $data to indicate new posts being approved (true) or unapproved (false).</li> <li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li> <li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li> Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/colours.css ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/colours.css (original) --- branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/colours.css Tue Aug 18 15:03:43 2009 *************** *** 790,795 **** --- 790,800 ---- background-image: url("{T_THEME_PATH}/images/bg_menu.gif"); } + .rtl #navigation a { + background-image: url("{T_THEME_PATH}/images/bg_menu_rtl.gif"); + background-position: 0 100%; + } + #navigation a:hover { background-color: #aabac6; color: #BC2A4D; Added: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/bg_menu_rtl.gif ============================================================================== Binary file - no diff available. Propchange: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/bg_menu_rtl.gif ------------------------------------------------------------------------------ svn:mime-type = image/gif |