1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02: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:
Joas Schilling
2009-06-18 18:01:42 +00:00
parent d555983684
commit 7d3c89e25a
4 changed files with 7 additions and 1 deletions

View File

@@ -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 {

View File

@@ -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;

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B