From b8d5a12ad05aaa5a1adce9a462f47e228633fe0b Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 5 Dec 2022 10:42:48 +0100 Subject: [PATCH] UI - Cursor over labels should be pointer --- changedetectionio/static/styles/scss/styles.scss | 6 ++++++ changedetectionio/static/styles/styles.css | 3 +++ 2 files changed, 9 insertions(+) diff --git a/changedetectionio/static/styles/scss/styles.scss b/changedetectionio/static/styles/scss/styles.scss index e62305fe..65b09971 100644 --- a/changedetectionio/static/styles/scss/styles.scss +++ b/changedetectionio/static/styles/scss/styles.scss @@ -322,6 +322,12 @@ a.pure-button-selected { padding: 0.5rem 0 1rem 0; } +label { + &:hover { + cursor: pointer; + } +} + #notification-customisation { border: 1px solid var(--color-border-notification); padding: 0.5rem; diff --git a/changedetectionio/static/styles/styles.css b/changedetectionio/static/styles/styles.css index 8a54e8d7..37877828 100644 --- a/changedetectionio/static/styles/styles.css +++ b/changedetectionio/static/styles/styles.css @@ -474,6 +474,9 @@ a.pure-button-selected { .notifications-wrapper { padding: 0.5rem 0 1rem 0; } +label:hover { + cursor: pointer; } + #notification-customisation { border: 1px solid var(--color-border-notification); padding: 0.5rem;