From f20d3a41837081b3c7d878724cc69f0a66cb80f5 Mon Sep 17 00:00:00 2001 From: ernjvr Date: Wed, 8 Aug 2018 08:38:43 +0200 Subject: [PATCH] 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 d68b4f8c3cf..fb9c2e3c81a 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;