Fix alignment buttons when there is no content in editor under RTL, props SergeyBiryukov, fixes 18247

git-svn-id: http://svn.automattic.com/wordpress/trunk@19085 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-10-29 00:17:37 +00:00
parent 2099147d4c
commit 02896d9506
2 changed files with 6 additions and 33 deletions

View File

@ -8,7 +8,7 @@ html .mceContentBody {
direction: rtl; direction: rtl;
unicode-bidi: embed; unicode-bidi: embed;
float: right; float: right;
max-width: 584px; width: 584px;
} }
* { * {
font-family: Arial, Tahoma, sans-serif; font-family: Arial, Tahoma, sans-serif;

View File

@ -5,18 +5,16 @@ Theme Name: Twenty Ten
Used to style the TinyMCE editor. Used to style the TinyMCE editor.
*/ */
html .mceContentBody{ html .mceContentBody{
direction:rtl; direction: rtl;
unicode-bidi:embed; unicode-bidi: embed;
float:right; float: right;
width: 640px;
} }
* { * {
font-family: Arial, Tahoma, sans-serif; font-family: Arial, Tahoma, sans-serif;
} }
/* Text elements */ /* Text elements */
ul { ul, ol {
margin: 0 -18px 18px 0;
}
ol {
margin: 0 -18px 18px 0; margin: 0 -18px 18px 0;
} }
dd { dd {
@ -29,28 +27,3 @@ table {
text-align: right; text-align: right;
margin: 0 0 24px -1px; margin: 0 0 24px -1px;
} }
html .mceContentBody{
direction:rtl;
unicode-bidi:embed;
float:right;
}
* {
font-family: Arial, Tahoma, sans-serif;
}
/* Text elements */
ul {
margin: 0 -18px 18px 0;
}
ol {
margin: 0 -18px 18px 0;
}
dd {
margin-right: 0;
}
blockquote {
font-style: normal;
}
table {
text-align: right;
margin: 0 0 24px -1px;
}