From 3ecc8d3f42c670c77b229aa5fcca6b4f36e1b160 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 6 Jun 2019 01:24:51 +0000 Subject: [PATCH] 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 --- src/wp-admin/css/media.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/css/media.css b/src/wp-admin/css/media.css index a26b9a5c93..21f4786b02 100644 --- a/src/wp-admin/css/media.css +++ b/src/wp-admin/css/media.css @@ -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"; }