From 4a7a31e64ba7f486e953983e30569554f1e0209b Mon Sep 17 00:00:00 2001 From: stellalc7 Date: Thu, 24 Jun 2021 11:04:04 -0400 Subject: [PATCH] style(sqllab): update table count styling (#15200) * Change text style and opacity * Edit changes to text style and opacity for table length * Edit changes to text style and opacity --- superset-frontend/src/components/TableSelector/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/superset-frontend/src/components/TableSelector/index.tsx b/superset-frontend/src/components/TableSelector/index.tsx index 4ac52b80f0b7..94c53cdcd5ea 100644 --- a/superset-frontend/src/components/TableSelector/index.tsx +++ b/superset-frontend/src/components/TableSelector/index.tsx @@ -65,6 +65,10 @@ const TableSelectorWrapper = styled.div` border-bottom: 1px solid ${({ theme }) => theme.colors.secondary.light5}; margin: 15px 0; } + + .table-length { + color: ${({ theme }) => theme.colors.grayscale.light1}; + } `; const TableLabel = styled.span` @@ -382,9 +386,8 @@ const TableSelector: FunctionComponent = ({ {t('See table schema')}{' '} {schema && ( - - {tableOptions.length} in - {schema} + + {tableOptions.length} in {schema} )}