Make WordPress Core

Changeset 12553


Ignore:
Timestamp:
12/27/2009 08:06:57 PM (15 years ago)
Author:
azaozz
Message:

Move wp-admin.css and rtl.css to the wp-admin/css directory, rename rtl.css to wp-admin-rtl.css to follow naming standard, fixes #10985

Location:
trunk
Files:
3 added
4 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/script-loader.php

    r12552 r12553  
    426426    $suffix = defined('STYLE_DEBUG') && STYLE_DEBUG ? '.dev' : '';
    427427
    428     $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
     428    $rtl_styles = array( 'wp-admin', 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
    429429
    430430    // all colors stylesheets need to have the same query strings (cache manifest compat)
    431431    $colors_version = '20091227';
    432432
    433     $styles->add( 'wp-admin', "/wp-admin/wp-admin$suffix.css", array(), '20091224' );
    434     $styles->add_data( 'wp-admin', 'rtl', "/wp-admin/rtl$suffix.css" );
     433    $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20091227' );
    435434
    436435    $styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20091221' );
Note: See TracChangeset for help on using the changeset viewer.