Changes between Version 1 and Version 2 of Ticket #45330, comment 1
- Timestamp:
- 11/12/2018 10:00:31 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45330, comment 1
v1 v2 2 2 3 3 If I understand this correctly, the wp-admin/load-styles.php replaces RTL only for minified scripts: 4 ``` 4 5 {{{#!php 6 <?php 5 7 if ( $rtl && ! empty( $style->extra['rtl'] ) ) { 6 8 // All default styles have fully independent RTL files. 7 9 $path = str_replace( '.min.css', '-rtl.min.css', $path ); 8 10 } 9 ``` 11 }}} 10 12 11 13 But there are no minified styles yet in the whole wp-includes/css/dist folder. So I think basically adding those will solve the issue.