mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-13 20:28:44 +01:00
Fix bug #33745 - Correctly orientate quoted text image on RTL languages
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9622 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
d555983684
commit
7d3c89e25a
@ -116,6 +116,7 @@
|
||||
<li>[Fix] Do not display birthdays of banned users (Bug #20625 - Patch by nickvergessen)</li>
|
||||
<li>[Fix] Fix function to recalculate Nested Sets (Bug #41555 - Patch by EXreaction)</li>
|
||||
<li>[Fix] Display and highlight already used rank images while assigning new rank (Bug #22665 - Patch by nickvergessen)</li>
|
||||
<li>[Fix] Correctly orientate quoted text image on RTL languages (Bug #33745 - Patch by nickvergessen)</li>
|
||||
<li>[Fix] Do not display "View user notes" and "Warn user" links in user profile if corresponding MCP modules are disabled. (Bug #10519 - Patch by rxu)</li>
|
||||
<li>[Fix] Empty error message in UCP folder management when creating folder without name (Bug #39875 - Patch by nickvergessen)</li>
|
||||
<li>[Fix] Wrong description in UCP group management implicates missing feature (Bug #19945 - Patch by nickvergessen)</li>
|
||||
|
@ -367,11 +367,12 @@
|
||||
/* Quote block */
|
||||
.rtl blockquote {
|
||||
margin: 0.5em 25px 0 1px;
|
||||
background-position: 99% 5px;
|
||||
}
|
||||
|
||||
.rtl blockquote blockquote {
|
||||
/* Nested quotes */
|
||||
margin: 0.5em 15px 0 1px;
|
||||
margin: 0.5em 15px 0 1px;
|
||||
}
|
||||
|
||||
.rtl blockquote cite {
|
||||
|
@ -461,6 +461,10 @@ blockquote {
|
||||
border-color:#DBDBCE;
|
||||
}
|
||||
|
||||
.rtl blockquote {
|
||||
background-image: url("{T_THEME_PATH}/images/quote_rtl.gif");
|
||||
}
|
||||
|
||||
blockquote blockquote {
|
||||
/* Nested quotes */
|
||||
background-color:#EFEED9;
|
||||
|
BIN
phpBB/styles/prosilver/theme/images/quote_rtl.gif
Normal file
BIN
phpBB/styles/prosilver/theme/images/quote_rtl.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 154 B |
Loading…
x
Reference in New Issue
Block a user