Code is still code: force LTR for .code and <code>, and the function lists in plugin/theme editors. see #19598.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19816 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-02-02 23:58:46 +00:00
parent c43ddd7284
commit 10410be1f7
1 changed files with 5 additions and 3 deletions

View File

@ -56,7 +56,8 @@ ol {
} }
.code, code { .code, code {
font-family: Tahoma, Arial, sans-serif; font-family: monospace;
direction: ltr;
} }
.quicktags, .search { .quicktags, .search {
@ -2296,12 +2297,13 @@ h3.tb {
margin-right: 10px; margin-right: 10px;
} }
/* theme-editor */ /* theme-editor, plugin-editor */
#templateside { #templateside {
float: left; float: left;
} }
#template textarea { #template textarea,
#docs-list {
direction: ltr; direction: ltr;
} }