This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.11
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.11 by this push:
new f20d3a4 ui: change cursor to default to prevent user confusion (#2785)
f20d3a4 is described below
commit f20d3a41837081b3c7d878724cc69f0a66cb80f5
Author: ernjvr <[email protected]>
AuthorDate: Wed Aug 8 08:38:43 2018 +0200
ui: change cursor to default to prevent user confusion (#2785)
When a regular user navigates to the Dashboard screen and hovers over the
'Latest events' entries, the mouse cursor changes to a hand pointer, but it
cannot select any of these entries.
Expected Behaviour:
When a user navigates to the Dashboard screen and hovers over the 'Latest
events' entries, the mouse cursor must not change to a hand pointer. This will
allow the user to make the correct interpretation that the 'Latest events'
entries are not selectable.
Actual Behaviour:
When a user navigates to the Dashboard screen and hovers over the 'Latest
events' entries, the mouse cursor changes to a hand pointer. This causes a user
to incorrectly interpret that the entries are selectable.
To Reproduce:
Log in to the Cloudstack UI as a regular User.
On the Dashboard screen, hover the mouse over the 'Latest events' entries,
the cursor changes to a hand pointer. Confirm that the entries cannot be
selected.
---
ui/css/cloudstack3.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/css/cloudstack3.css b/ui/css/cloudstack3.css
index d68b4f8..fb9c2e3 100644
--- a/ui/css/cloudstack3.css
+++ b/ui/css/cloudstack3.css
@@ -4987,7 +4987,7 @@ textarea {
.dashboard.user .status-lists ul li.events .content li {
width: 97%;
- cursor: pointer;
+ cursor: default;
margin: 6px 11px 0 0;
font-size: 11px;
padding: 13px 0 12px 16px;