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. Built from https://develop.svn.wordpress.org/trunk@45495 git-svn-id: http://core.svn.wordpress.org/trunk@45306 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
53719315b4
commit
baa2cd69b8
|
@ -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: "\f345";
|
||||
}
|
||||
|
||||
.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: "\f341";
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45494';
|
||||
$wp_version = '5.3-alpha-45495';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue