feat(Sqllab): Enabling selection and copying of columns and rows in sql lab and dataset view (#31602)
This commit is contained in:
parent
d68f8d11fe
commit
7f72b062d1
|
|
@ -53,7 +53,6 @@ const StyledTable = styled(AntTable)<{ height?: number }>(
|
|||
th.ant-table-cell {
|
||||
font-weight: ${theme.typography.weights.bold};
|
||||
color: ${theme.colors.grayscale.dark1};
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
|||
|
|
@ -174,14 +174,12 @@ const StyledTable = styled(AntTable)<{ height?: number }>(
|
|||
th.ant-table-cell {
|
||||
font-weight: ${theme.typography.weights.bold};
|
||||
color: ${theme.colors.grayscale.dark1};
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.ant-table-tbody > tr > td {
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
|||
Loading…
Reference in New Issue