Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jbetancur committed Jul 1, 2019
2 parents a3b7118 + d7f61fe commit 96474bd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/DataTable/ExpanderButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ButtonStyle = styled.button`
color: ${props => props.theme.expander.expanderColorDisabled};
}
&:hover {
&:hover:enabled {
cursor: pointer;
}
`;
Expand Down
6 changes: 3 additions & 3 deletions src/DataTable/__tests__/__snapshots__/DataTable.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,7 @@ exports[`expandableRows should render correctly when expandableRows is true 1`]
color: rgba(0,0,0,.12);
}
.c16:hover {
.c16:hover:enabled {
cursor: pointer;
}
Expand Down Expand Up @@ -2219,7 +2219,7 @@ exports[`expandableRows should render correctly when expandableRows is true and
color: rgba(0,0,0,.12);
}
.c16:hover {
.c16:hover:enabled {
cursor: pointer;
}
Expand Down Expand Up @@ -6435,7 +6435,7 @@ exports[`sorting should render correctly when a column is sorted 1`] = `
color: rgba(0,0,0,.12);
}
.c16:hover {
.c16:hover:enabled {
cursor: pointer;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports[`<ExpanderButton expanded /> should render correctly 1`] = `
color: rgba(0,0,0,.12);
}
.c0:hover {
.c0:hover:enabled {
cursor: pointer;
}
Expand Down Expand Up @@ -56,7 +56,7 @@ exports[`<ExpanderButton expanded={false} /> should render correctly 1`] = `
color: rgba(0,0,0,.12);
}
.c0:hover {
.c0:hover:enabled {
cursor: pointer;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports[`component <TableCellExpander /> should render correctly 1`] = `
color: rgba(0,0,0,.12);
}
.c1:hover {
.c1:hover:enabled {
cursor: pointer;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ exports[`with columns should render correctly if expandableRows 1`] = `
color: rgba(0,0,0,.12);
}
.c2:hover {
.c2:hover:enabled {
cursor: pointer;
}
Expand Down

0 comments on commit 96474bd

Please sign in to comment.