diff options
author | cash <cash.costello@gmail.com> | 2013-03-08 13:04:07 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-03-08 13:04:07 -0500 |
commit | 3736c93fb6e3910a592b037d961367180edd542e (patch) | |
tree | 24b2a096c7a2e83a822f20f410df7e19ce1ffc9c | |
parent | d051e788e7ded0811dd14c6b47bcbda602737539 (diff) | |
download | elgg-3736c93fb6e3910a592b037d961367180edd542e.tar.gz elgg-3736c93fb6e3910a592b037d961367180edd542e.tar.bz2 |
Fixes #4464 adds hover for selecting with arrow keys
-rw-r--r-- | views/default/css/admin.php | 4 | ||||
-rw-r--r-- | views/default/css/elements/forms.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index 059e51dd6..ceeac71a2 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -624,6 +624,10 @@ a.elgg-button { text-decoration: none; color: #4690D6; } +.ui-autocomplete a.ui-state-hover { + background-color: #eee; + display: block; +} /* *************************************** USER PICKER diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index 2fc156447..f55e57fb4 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -267,6 +267,10 @@ input[type="radio"] { text-decoration: none; color: #4690D6; } +.ui-autocomplete a.ui-state-hover { + background-color: #eee; + display: block; +} /* *************************************** USER PICKER |