Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #45330, comment 1


Ignore:
Timestamp:
11/12/2018 10:00:31 PM (6 years ago)
Author:
websupporter
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45330, comment 1

    v1 v2  
    22
    33If I understand this correctly, the wp-admin/load-styles.php replaces RTL only for minified scripts:
    4 ```
     4
     5{{{#!php
     6<?php
    57        if ( $rtl && ! empty( $style->extra['rtl'] ) ) {
    68                // All default styles have fully independent RTL files.
    79                $path = str_replace( '.min.css', '-rtl.min.css', $path );
    810        }
    9 ```
     11}}}
    1012
    1113But there are no minified styles yet in the whole wp-includes/css/dist folder. So I think basically adding those will solve the issue.