diff options
| author | Cash Costello <cash.costello@gmail.com> | 2011-11-28 08:06:25 -0500 |
|---|---|---|
| committer | Cash Costello <cash.costello@gmail.com> | 2011-11-28 08:06:25 -0500 |
| commit | 57675a8b65a703ceb507176d0ac7bd29d6cff1bd (patch) | |
| tree | da0e0906de073511f57a7d8ed9d1099a985ba105 | |
| parent | e8717d0bbcd7d0b719ec3d85943135e83e58b716 (diff) | |
| download | elgg-57675a8b65a703ceb507176d0ac7bd29d6cff1bd.tar.gz elgg-57675a8b65a703ceb507176d0ac7bd29d6cff1bd.tar.bz2 | |
Fixes #4052 removed the :focus styling on every input element
| -rw-r--r-- | views/default/css/elements/forms.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index e358c86e7..81db81747 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -41,7 +41,7 @@ input, textarea { box-sizing: border-box; } -input:focus, textarea:focus { +input[type=text]:focus, textarea:focus { border: solid 1px #4690d6; background: #e4ecf5; color:#333; |
