From 2b20e6d3e1f484fa5748655e29bccbd4c6a932cf Mon Sep 17 00:00:00 2001 From: Aileen Nowak Date: Fri, 15 Jul 2016 18:30:50 +0300 Subject: [PATCH] Fixes curser changing to pointer on hover (#127) closes #7100 Adds `:hover` pseudo-class to `gh-notification-schedule` that sets the curser to default to avoid having it as a pointer on hover. --- ghost/admin/app/styles/components/notifications.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghost/admin/app/styles/components/notifications.css b/ghost/admin/app/styles/components/notifications.css index 932a65f11d..544eb533ac 100644 --- a/ghost/admin/app/styles/components/notifications.css +++ b/ghost/admin/app/styles/components/notifications.css @@ -118,6 +118,10 @@ line-height: 1.3em; } +.gh-notification-schedule:hover { + cursor: default; +} + /* Alerts /* ---------------------------------------------------------- */