diff --git a/wp-content/themes/twentyeleven/colors/dark.css b/wp-content/themes/twentyeleven/colors/dark.css index b9dacce238..63b809fd65 100644 --- a/wp-content/themes/twentyeleven/colors/dark.css +++ b/wp-content/themes/twentyeleven/colors/dark.css @@ -35,13 +35,13 @@ ins { background: #00063f; } input[type=text], -.post-password-required input[type=password], +input[type=password], +input[type=email], +input[type=url], +input[type=number], textarea { border: 1px solid #222; } -input[type=text]:focus, -textarea:focus { -} input#s { background-color: #ddd; } diff --git a/wp-content/themes/twentyeleven/style.css b/wp-content/themes/twentyeleven/style.css index 0606421268..a5bff31868 100644 --- a/wp-content/themes/twentyeleven/style.css +++ b/wp-content/themes/twentyeleven/style.css @@ -438,6 +438,9 @@ small { /* Forms */ input[type=text], input[type=password], +input[type=email], +input[type=url], +input[type=number], textarea { background: #fafafa; -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); @@ -447,6 +450,10 @@ textarea { color: #888; } input[type=text]:focus, +input[type=password]:focus, +input[type=email]:focus, +input[type=url]:focus, +input[type=number]:focus, textarea:focus { color: #373737; } @@ -454,7 +461,11 @@ textarea { padding-left: 3px; width: 98%; } -input[type=text] { +input[type=text], +input[type=password], +input[type=email], +input[type=url], +input[type=number] { padding: 3px; } input#s {