mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Prevent items from overflowing from the 'howdy' menu. Props Otto42. fixes #17148.
git-svn-id: http://svn.automattic.com/wordpress/trunk@18205 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cedbc4075
commit
e1b8dfc8fa
File diff suppressed because one or more lines are too long
@ -912,20 +912,20 @@ form.upgrade .hint {
|
|||||||
|
|
||||||
#user_info.active #user_info_links ul {
|
#user_info.active #user_info_links ul {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
-moz-transition: margin-top 150ms ease-out;
|
-moz-transition: margin-top 200ms;
|
||||||
-webkit-transition: margin-top 150ms ease-out;
|
-webkit-transition: margin-top 200ms;
|
||||||
-o-transition: margin-top 150ms ease-out;
|
-o-transition: margin-top 200ms;
|
||||||
transition: margin-top 150ms ease-out;
|
transition: margin-top 200ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
#user_info_links ul {
|
#user_info_links ul {
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
margin-top: -100%;
|
margin-top: -1000px;
|
||||||
-moz-transition: margin-top 250ms ease-in;
|
-moz-transition: margin-top 500ms ease-in;
|
||||||
-webkit-transition: margin-top 250ms ease-in;
|
-webkit-transition: margin-top 500ms ease-in;
|
||||||
-o-transition: margin-top 250ms ease-in;
|
-o-transition: margin-top 500ms ease-in;
|
||||||
transition: margin-top 250ms ease-in;
|
transition: margin-top 500ms ease-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
#user_info_links,
|
#user_info_links,
|
||||||
|
@ -482,7 +482,7 @@ function wp_default_styles( &$styles ) {
|
|||||||
// Any rtl stylesheets that don't have a .dev version for ltr
|
// Any rtl stylesheets that don't have a .dev version for ltr
|
||||||
$no_suffix = array( 'farbtastic' );
|
$no_suffix = array( 'farbtastic' );
|
||||||
|
|
||||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110608' );
|
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110608b' );
|
||||||
|
|
||||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110601' );
|
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110601' );
|
||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
Loading…
Reference in New Issue
Block a user