Skip to content

Commit

Permalink
Make cursor disabled when hovering over disabled checkboxes (#8431)
Browse files Browse the repository at this point in the history
  • Loading branch information
elazzabi authored and Jinksi committed Mar 28, 2024
1 parent 69563eb commit ef113a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog/fix-cursor-pointer-for-disabled-logging
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: minor
Type: fix

Fix the cursor pointer when hovering over disabled checkboxes in Advanced Settings
8 changes: 8 additions & 0 deletions client/settings/advanced-settings/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@
margin-bottom: 1em;
}
}

.settings-section__controls {
input[type='checkbox'] {
&:disabled {
cursor: not-allowed;
}
}
}

0 comments on commit ef113a8

Please sign in to comment.