From 568183bacd084490f1970c8b495005306791dcf4 Mon Sep 17 00:00:00 2001 From: Bryan Cunningham Date: Tue, 25 Nov 2025 10:18:43 -0500 Subject: [PATCH] fix disabled cursor styles (#17656) --- libs/components/src/checkbox/checkbox.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/components/src/checkbox/checkbox.component.ts b/libs/components/src/checkbox/checkbox.component.ts index 61d5bb7251c..2501b85f617 100644 --- a/libs/components/src/checkbox/checkbox.component.ts +++ b/libs/components/src/checkbox/checkbox.component.ts @@ -22,6 +22,7 @@ export class CheckboxComponent implements BitFormControlAbstraction { "tw-relative", "tw-transition", "tw-cursor-pointer", + "disabled:tw-cursor-default", "tw-inline-block", "tw-align-sub", "tw-flex-none", // Flexbox fix for bit-form-control @@ -62,7 +63,7 @@ export class CheckboxComponent implements BitFormControlAbstraction { "[&:not(bit-form-control_*)]:focus-visible:before:tw-ring-offset-2", "[&:not(bit-form-control_*)]:focus-visible:before:tw-ring-primary-600", - "disabled:before:tw-cursor-auto", + "disabled:before:tw-cursor-default", "disabled:before:tw-border", "disabled:before:hover:tw-border", "disabled:before:tw-bg-secondary-100",