Media: Restore correct arrow direction in RTL in Attachment Details modal.

Reverts [29264]. As we now have a build task to replace dashicons for RTL, the CSS rules no longer worked as expected and had the opposite effect.

Props ramiy, SergeyBiryukov.
Fixes #46289.

git-svn-id: https://develop.svn.wordpress.org/trunk@45495 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-06-06 01:24:51 +00:00
parent f6bd90f2ef
commit 3ecc8d3f42
1 changed files with 2 additions and 4 deletions

View File

@ -676,13 +676,11 @@ border color while dragging a file over the uploader drop area */
color: #000;
}
.edit-attachment-frame .edit-media-header .left:before,
.rtl .edit-attachment-frame .edit-media-header .right:before {
.edit-attachment-frame .edit-media-header .left:before {
content: "\f341";
}
.edit-attachment-frame .edit-media-header .right:before,
.rtl .edit-attachment-frame .edit-media-header .left:before {
.edit-attachment-frame .edit-media-header .right:before {
content: "\f345";
}