Skip to content

Commit

Permalink
fix(BulkActions): select all semantic styling (#3574)
Browse files Browse the repository at this point in the history
  • Loading branch information
MEsteves22 committed Aug 7, 2023
1 parent a4cc96d commit 6e1f278
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/components/BulkActions/BulkActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const HvBulkActions = (props: HvBulkActionsProps) => {
{ [classes.semantic]: isSemantic },
isSemantic &&
css({
"& $selectAll div": {
[`& .${staticClasses.selectAll} div`]: {
color: theme.colors.base_dark,

"&:hover:not(:disabled)": {
Expand All @@ -163,12 +163,12 @@ export const HvBulkActions = (props: HvBulkActionsProps) => {
},
},

"& $selectAll:focus-within div": {
[`& .${staticClasses.selectAll}:focus-within div`]: {
backgroundColor: hexToRgbA(baseColor, 0.3),
},

// IE fallback code (using focus-within-polyfill)
"& $selectAll.focus-within div": {
[`& .${staticClasses.selectAll}.focus-within div`]: {
backgroundColor: hexToRgbA(baseColor, 0.3),
},
}),
Expand Down

0 comments on commit 6e1f278

Please sign in to comment.