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

git-svn-id: http://svn.automattic.com/wordpress/trunk@12553 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-12-27 20:06:57 +00:00
parent e88cf62434
commit 1ddbdf2a2e
6 changed files with 16 additions and 18 deletions

View File

@ -520,7 +520,7 @@ td.action-links, th.action-links {
#favorite-toggle {
right: auto;
left: 0;
background:transparent url(images/fav-arrow-rtl.gif) no-repeat 10px -4px;
background:transparent url(../images/fav-arrow-rtl.gif) no-repeat 10px -4px;
}
#utc-time, #local-time {
padding-left: 0;

File diff suppressed because one or more lines are too long

View File

@ -528,7 +528,7 @@ textarea.all-options, input.all-options {
padding: 0;
margin-bottom: -3px;
border-bottom-width: 3px;
background-image: url("images/ed-bg.gif");
background-image: url("../images/ed-bg.gif");
background-position: left top;
background-repeat: repeat-x;
}
@ -1553,7 +1553,7 @@ span.description,
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block;
background: transparent url(images/resize.gif) no-repeat scroll right bottom;
background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
width: 12px;
cursor: se-resize;
margin: 0 2px;
@ -2488,7 +2488,7 @@ fieldset {
#screen-options-link-wrap,
#contextual-help-link-wrap {
float: right;
background: transparent url( images/screen-options-left.gif ) no-repeat 0 0;
background: transparent url( ../images/screen-options-left.gif ) no-repeat 0 0;
font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
height: 22px;
padding: 0;
@ -2508,7 +2508,7 @@ fieldset {
}
#screen-meta a.show-settings {
background-image: url( images/screen-options-right.gif );
background-image: url( ../images/screen-options-right.gif );
}
#screen-meta a.show-settings:hover {
@ -3381,7 +3381,7 @@ td.imgedit-settings input {
.imgedit-wait {
position: absolute;
top: 0;
background: #FFFFFF url(images/wpspin_light.gif) no-repeat scroll 22px 10px;
background: #FFFFFF url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
opacity: 0.7;
filter: alpha(opacity=70);
width: 100%;
@ -3422,7 +3422,7 @@ td.imgedit-settings input {
}
.imgedit-crop {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -9px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -9px -31px;
margin: 0 8px 0 0;
}
@ -3435,7 +3435,7 @@ td.imgedit-settings input {
}
.imgedit-rleft {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -46px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -46px -31px;
margin: 0 3px;
}
@ -3448,7 +3448,7 @@ td.imgedit-settings input {
}
.imgedit-rright {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -77px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -77px -31px;
margin: 0 8px 0 3px;
}
@ -3461,7 +3461,7 @@ td.imgedit-settings input {
}
.imgedit-flipv {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -115px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -115px -31px;
margin: 0 3px;
}
@ -3474,7 +3474,7 @@ td.imgedit-settings input {
}
.imgedit-fliph {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -147px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -147px -31px;
margin: 0 8px 0 3px;
}
@ -3487,7 +3487,7 @@ td.imgedit-settings input {
}
.imgedit-undo {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -184px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -184px -31px;
margin: 0 3px;
}
@ -3500,7 +3500,7 @@ td.imgedit-settings input {
}
.imgedit-redo {
background: transparent url(images/imgedit-icons.png) no-repeat scroll -215px -31px;
background: transparent url(../images/imgedit-icons.png) no-repeat scroll -215px -31px;
margin: 0 8px 0 3px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -425,13 +425,12 @@ function wp_default_styles( &$styles ) {
$suffix = defined('STYLE_DEBUG') && STYLE_DEBUG ? '.dev' : '';
$rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
$rtl_styles = array( 'wp-admin', 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20091227';
$styles->add( 'wp-admin', "/wp-admin/wp-admin$suffix.css", array(), '20091224' );
$styles->add_data( 'wp-admin', 'rtl', "/wp-admin/rtl$suffix.css" );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20091227' );
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20091221' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );