Specify background color for input elements, props hakre, fixes #10881
git-svn-id: https://develop.svn.wordpress.org/trunk@12234 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
115e5e33fb
commit
0666505958
File diff suppressed because one or more lines are too long
|
@ -11,6 +11,7 @@ textarea,
|
|||
input,
|
||||
select {
|
||||
border-color: #dfdfdf;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
kbd,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -10,7 +10,8 @@ html {
|
|||
textarea,
|
||||
input,
|
||||
select {
|
||||
border-color: #DFDFDF;
|
||||
border-color: #dfdfdf;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
kbd,
|
||||
|
|
|
@ -415,7 +415,7 @@ function wp_default_styles( &$styles ) {
|
|||
$rtl_styles = array( '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 = '20091109';
|
||||
$colors_version = '20091119';
|
||||
|
||||
$styles->add( 'wp-admin', "/wp-admin/wp-admin$suffix.css", array(), '20091026' );
|
||||
$styles->add_data( 'wp-admin', 'rtl', "/wp-admin/rtl$suffix.css" );
|
||||
|
|
Loading…
Reference in New Issue