This is an automated email from the ASF dual-hosted git repository.
hugh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 680b447 style(sqllab): update table count styling (#15200)
680b447 is described below
commit 680b447bc481624b39b4d9a13852cc52de27c33c
Author: stellalc7 <[email protected]>
AuthorDate: Thu Jun 24 11:04:04 2021 -0400
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 4ac52b8..94c53cd 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<TableSelectorProps>
= ({
<FormLabel>
{t('See table schema')}{' '}
{schema && (
- <small>
- {tableOptions.length} in
- <i>{schema}</i>
+ <small className="table-length">
+ {tableOptions.length} in {schema}
</small>
)}
</FormLabel>