rusackas commented on a change in pull request #11216:
URL:
https://github.com/apache/incubator-superset/pull/11216#discussion_r505853191
##########
File path: superset-frontend/src/SqlLab/components/QuerySearch.jsx
##########
@@ -39,6 +39,15 @@ const propTypes = {
displayLimit: PropTypes.number.isRequired,
};
+const TableStyles = styled.div`
+ height: ${props => props.height};
+
+ .table > thead > tr > th {
+ border-bottom: 2px solid #cfd8dc;
+ background: #f5f5f5;
Review comment:
```suggestion
background: ${({ theme }) => theme.colors.grayscale.light4};
```
Trying to avoid hard-coded colors/fonts/etc and use the Theme wherever
possible.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]