Media Grid: Swap arrow direction in RTL in Attachment Details modal.

props adamsilverstein.
fixes #28980.

git-svn-id: https://develop.svn.wordpress.org/trunk@29264 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-07-22 03:07:21 +00:00
parent 25b733cea2
commit 708af1c467
1 changed files with 4 additions and 2 deletions

View File

@ -2767,11 +2767,13 @@ video#inline-media-node {
display: none;
}
.edit-attachment-frame .edit-media-header .left:before {
.edit-attachment-frame .edit-media-header .left:before,
.rtl .edit-attachment-frame .edit-media-header .right:before {
content: '\f340';
}
.edit-attachment-frame .edit-media-header .right:before {
.edit-attachment-frame .edit-media-header .right:before,
.rtl .edit-attachment-frame .edit-media-header .left:before {
content: '\f344';
}