Lighten foreground color for inputs to match the standard body text. Also lighten several other instances of pure black. props helenyhou, fixes #19923.

git-svn-id: http://core.svn.wordpress.org/trunk@20748 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2012-05-09 03:25:22 +00:00
parent 931ce249e4
commit 3fc77d1465
2 changed files with 10 additions and 3 deletions

View File

@ -45,6 +45,10 @@ input[type="url"],
select { select {
border-color: #dfdfdf; border-color: #dfdfdf;
background-color: #fff; background-color: #fff;
color: #333;
}
select {
color: #000; color: #000;
} }

View File

@ -40,6 +40,10 @@ input[type="url"],
select { select {
border-color: #dfdfdf; border-color: #dfdfdf;
background-color: #fff; background-color: #fff;
color: #333;
}
select {
color: #000; color: #000;
} }
@ -819,7 +823,7 @@ table.widefat span.spam a,
.contextual-help-tabs .active a, .contextual-help-tabs .active a,
.contextual-help-tabs .active a:hover { .contextual-help-tabs .active a:hover {
background: #fff; background: #fff;
color: #000; color: #333;
} }
/* screen options and help tabs */ /* screen options and help tabs */
@ -842,7 +846,7 @@ table.widefat span.spam a,
} }
#screen-meta-links a.show-settings:hover { #screen-meta-links a.show-settings:hover {
color: #000; color: #333;
} }
#screen-meta-links a.show-settings { #screen-meta-links a.show-settings {
@ -873,7 +877,6 @@ table.widefat span.spam a,
} }
#footer a:hover { #footer a:hover {
color: #000;
text-decoration: underline; text-decoration: underline;
} }