mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
chore: Removes hard-coded colors - iteration 3 (#20016)
This commit is contained in:
committed by
GitHub
parent
3a379af1e7
commit
8bb8b7f612
@@ -96,21 +96,23 @@ const validatorMap =
|
||||
const scheduledQueriesConf = bootstrapData?.common?.conf?.SCHEDULED_QUERIES;
|
||||
|
||||
const LimitSelectStyled = styled.span`
|
||||
.ant-dropdown-trigger {
|
||||
align-items: center;
|
||||
color: black;
|
||||
display: flex;
|
||||
font-size: 12px;
|
||||
margin-right: ${({ theme }) => theme.gridUnit * 2}px;
|
||||
text-decoration: none;
|
||||
span {
|
||||
display: inline-block;
|
||||
margin-right: ${({ theme }) => theme.gridUnit * 2}px;
|
||||
&:last-of-type: {
|
||||
margin-right: ${({ theme }) => theme.gridUnit * 4}px;
|
||||
${({ theme }) => `
|
||||
.ant-dropdown-trigger {
|
||||
align-items: center;
|
||||
color: ${theme.colors.grayscale.dark2};
|
||||
display: flex;
|
||||
font-size: 12px;
|
||||
margin-right: ${theme.gridUnit * 2}px;
|
||||
text-decoration: none;
|
||||
span {
|
||||
display: inline-block;
|
||||
margin-right: ${theme.gridUnit * 2}px;
|
||||
&:last-of-type: {
|
||||
margin-right: ${theme.gridUnit * 4}px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`}
|
||||
`;
|
||||
|
||||
const StyledToolbar = styled.div`
|
||||
|
||||
Reference in New Issue
Block a user