More RTL fixes, props rosshanney, see #19042
git-svn-id: http://svn.automattic.com/wordpress/trunk@19307 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
28ec7872a2
commit
ae3a4343e9
File diff suppressed because one or more lines are too long
|
@ -2263,7 +2263,8 @@ div.widgets-sortables,
|
|||
border-left-color: #d1e5ee;
|
||||
}
|
||||
|
||||
.rtl .folded #adminmenu .wp-submenu-wrap {
|
||||
.rtl #adminmenu .wp-submenu-wrap,
|
||||
.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{
|
||||
-moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
-webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
|
@ -2274,7 +2275,7 @@ div.widgets-sortables,
|
|||
background-position: 0 -108px;
|
||||
}
|
||||
|
||||
.rtl .folded #collapse-button div {
|
||||
.rtl.folded #collapse-button div {
|
||||
background-position: 0 -72px;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1889,7 +1889,8 @@ div.widgets-sortables,
|
|||
border-left-color: #dfdfdf;
|
||||
}
|
||||
|
||||
.rtl .folded #adminmenu .wp-submenu-wrap {
|
||||
.rtl #adminmenu .wp-submenu-wrap,
|
||||
.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{
|
||||
-moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
-webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
|
@ -1900,7 +1901,7 @@ div.widgets-sortables,
|
|||
background-position: 0 -108px;
|
||||
}
|
||||
|
||||
.rtl .folded #collapse-button div {
|
||||
.rtl.folded #collapse-button div {
|
||||
background-position: 0 -72px;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -68,7 +68,14 @@ ol {
|
|||
|
||||
.icon32 {
|
||||
float: right;
|
||||
margin: 7px 0 0 8px;
|
||||
margin-right: 0;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.icon16 {
|
||||
float: right;
|
||||
margin-right: -8px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.howto {
|
||||
|
@ -173,10 +180,6 @@ th.action-links {
|
|||
4.0 - Notifications
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.plugin-update .update-message {
|
||||
margin: 0 31px 8px 10px;
|
||||
}
|
||||
|
||||
form.upgrade .hint {
|
||||
font-style: normal;
|
||||
}
|
||||
|
@ -599,7 +602,41 @@ form.upgrade .hint {
|
|||
#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
|
||||
padding-right: 0;
|
||||
padding-left: 125px;
|
||||
}
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-close {
|
||||
right: auto;
|
||||
left: 10px;
|
||||
}
|
||||
|
||||
.welcome-panel .wp-badge {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.welcome-panel-content {
|
||||
margin-left: 0;
|
||||
margin-right: 190px;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-column {
|
||||
margin-right: 24px;
|
||||
margin-left: 40px;
|
||||
float: right;
|
||||
}
|
||||
.welcome-panel .welcome-panel-column:last-child {
|
||||
margin-right: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.welcome-panel h4 .icon16 {
|
||||
margin-left: 0;
|
||||
margin-right: -32px;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-column li {
|
||||
padding-left: 0;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
10.0 - List Posts (/Pages/etc)
|
||||
|
|
|
@ -432,13 +432,13 @@ function wp_default_styles( &$styles ) {
|
|||
// Any rtl stylesheets that don't have a .dev version for ltr
|
||||
$no_suffix = array( 'farbtastic' );
|
||||
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111114d' );
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111115' );
|
||||
|
||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111015' );
|
||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||
$colors_version = '20111111';
|
||||
$colors_version = '20111115';
|
||||
|
||||
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
||||
$styles->add( 'colors', true, array('wp-admin'), $colors_version );
|
||||
|
|
Loading…
Reference in New Issue