Make WordPress Core

Changeset 31579


Ignore:
Timestamp:
02/27/2015 08:18:05 PM (10 years ago)
Author:
ocean90
Message:

Build: Let RTLCSS handle swapping the codes for right/left arrows from Dashicons.

Exclude wp-includes/css/dashicons.css from core task since we don't want/need a RTL version of it.

fixes #31478.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r31573 r31579  
    193193                    ]
    194194                },
     195                properties : [
     196                    {
     197                        name: 'swap-dashicons-left-right-arrows',
     198                        expr: /content/im,
     199                        action: function( prop, value ) {
     200                            if ( value === '"\\f141"' ) { // dashicons-arrow-left
     201                                value = '"\\f139"';
     202                            } else if ( value === '"\\f340"' ) { // dashicons-arrow-left-alt
     203                                value = '"\\f344"';
     204                            } else if ( value === '"\\f341"' ) { // dashicons-arrow-left-alt2
     205                                value = '"\\f345"';
     206                            } else if ( value === '"\\f139"' ) { // dashicons-arrow-right
     207                                value = '"\\f141"';
     208                            } else if ( value === '"\\f344"' ) { // dashicons-arrow-right-alt
     209                                value = '"\\f340"';
     210                            } else if ( value === '"\\f345"' ) { // dashicons-arrow-right-alt2
     211                                value = '"\\f341"';
     212                            }
     213                            return { prop: prop, value: value };
     214                        }
     215                    }
     216                ],
    195217                saveUnmodified: false
    196218            },
     
    202224                src: [
    203225                    'wp-admin/css/*.css',
    204                     'wp-includes/css/*.css'
     226                    'wp-includes/css/*.css',
     227
     228                    // Exceptions
     229                    '!wp-includes/css/dashicons.css'
    205230                ]
    206231            },
  • trunk/src/wp-admin/css/customize-controls.css

    r31538 r31579  
    161161    border-left: 1px solid #eee;
    162162    z-index: 0;
    163 }
    164 
    165 .rtl .control-section.control-panel > .accordion-section-title:after {
    166     content: "\f341";
    167163}
    168164
     
    261257    top: 7px;
    262258    left: 13px;
    263 }
    264 
    265 .rtl .control-panel-back:before {
    266     content: "\f345";
    267259}
    268260
     
    941933}
    942934
    943 .rtl .control-panel-back.themes-panel-back:before {
    944     content: "\f341";
    945 }
    946 
    947935/* Details View */
    948936.wp-customizer .theme-overlay {
     
    989977        top: 0;
    990978        bottom: 0;
    991     }   
     979    }
    992980}
    993981
  • trunk/src/wp-admin/css/themes.css

    r31573 r31579  
    500500}
    501501
    502 .theme-overlay .theme-header .left:before,
    503 .rtl .theme-overlay .theme-header .right:before {
    504     content: '\f341';
    505 }
    506 
    507 .theme-overlay .theme-header .right:before,
    508 .rtl .theme-overlay .theme-header .left:before {
    509     content: '\f345';
     502.theme-overlay .theme-header .left:before {
     503    content: "\f341";
     504}
     505
     506.theme-overlay .theme-header .right:before {
     507    content: "\f345";
    510508}
    511509
     
    14631461}
    14641462
    1465 .rtl .theme-install-overlay .previous-theme:before {
    1466     content: "\f345";
    1467 }
    1468 
    1469 .rtl .theme-install-overlay .next-theme:before {
    1470     content: "\f341";
    1471 }
    1472 
    14731463/* Collapse Button */
    14741464.wp-full-overlay a.collapse-sidebar {
Note: See TracChangeset for help on using the changeset viewer.