Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ exports[`SimpleTable SimpleTable 1`] = `
width: 100%;
height: 56px;
text-align: left;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-transition: box-shadow 200ms;
transition: box-shadow 200ms;
cursor: pointer;
}

Expand All @@ -105,8 +105,8 @@ exports[`SimpleTable SimpleTable 1`] = `
width: 100%;
height: 56px;
text-align: left;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-transition: box-shadow 200ms;
transition: box-shadow 200ms;
opacity: 0.48;
pointer-events: none;
cursor: unset;
Expand Down
6 changes: 1 addition & 5 deletions packages/core/src/SimpleTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ const SimpleTableHeader: React.FC<SimpleTableHeaderProps> = ({
* SimpleTableRow
*
* A single row in the table used to group cells.
* Note that there is no div associated with this,
* it is just a convenience component to pass proper
* keys to the grid cells.
*/

const TableRow = styled.tr<{
Expand All @@ -115,7 +112,7 @@ const TableRow = styled.tr<{

text-align: left;

transition: all 200ms;
transition: box-shadow 200ms;

&:nth-child(odd) {
background-color: ${({ theme }) => theme.color.background03()};
Expand Down Expand Up @@ -246,7 +243,6 @@ interface SimpleTableProps extends BaseProps {
readonly maxHeight: number
/**
* Override theme's default setting for `compact` if set.

*/
readonly compact?: boolean
/**
Expand Down