From ef113a8e2dfc7148a5185f99c2c42ed10723e11b Mon Sep 17 00:00:00 2001 From: Ahmed Date: Thu, 21 Mar 2024 12:33:15 +0000 Subject: [PATCH] Make cursor disabled when hovering over disabled checkboxes (#8431) --- changelog/fix-cursor-pointer-for-disabled-logging | 4 ++++ client/settings/advanced-settings/style.scss | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 changelog/fix-cursor-pointer-for-disabled-logging diff --git a/changelog/fix-cursor-pointer-for-disabled-logging b/changelog/fix-cursor-pointer-for-disabled-logging new file mode 100644 index 00000000000..8688da18944 --- /dev/null +++ b/changelog/fix-cursor-pointer-for-disabled-logging @@ -0,0 +1,4 @@ +Significance: minor +Type: fix + +Fix the cursor pointer when hovering over disabled checkboxes in Advanced Settings diff --git a/client/settings/advanced-settings/style.scss b/client/settings/advanced-settings/style.scss index 775e5e02b98..7af2feb30ca 100644 --- a/client/settings/advanced-settings/style.scss +++ b/client/settings/advanced-settings/style.scss @@ -9,3 +9,11 @@ margin-bottom: 1em; } } + +.settings-section__controls { + input[type='checkbox'] { + &:disabled { + cursor: not-allowed; + } + } +}