Skip to content

Commit

Permalink
fix(datagrid): exclude selection checkbox from error styling
Browse files Browse the repository at this point in the history
  • Loading branch information
dtsanevmw committed Dec 12, 2024
1 parent d786b0a commit 7fa102a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion projects/angular/src/forms/styles/_checkbox.clarity.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@
}
}

.clr-error .clr-checkbox-wrapper input[type='checkbox'] + .clr-control-label::before {
.clr-error
.clr-checkbox-wrapper:not(.datagrid-select .clr-checkbox-wrapper)
input[type='checkbox']
+ .clr-control-label::before {
border-color: forms-variables.$clr-forms-invalid-color;
}

Expand Down

0 comments on commit 7fa102a

Please sign in to comment.