diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-28 08:06:25 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-28 21:44:02 -0500 |
commit | c67996af8b7bcb1b3e6da5ef009e8bf3537abae5 (patch) | |
tree | ca6680579b9ffb9d2bf5363747537e57df8424a0 /views/default | |
parent | 208939a017f4b29240a814e29d0141dc5929b4dd (diff) | |
download | elgg-c67996af8b7bcb1b3e6da5ef009e8bf3537abae5.tar.gz elgg-c67996af8b7bcb1b3e6da5ef009e8bf3537abae5.tar.bz2 |
Fixes #4052 removed the :focus styling on every input element
Diffstat (limited to 'views/default')
-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; |