Skip to content

Commit

Permalink
style(sqllab): update table count styling (apache#15200)
Browse files Browse the repository at this point in the history
* Change text style and opacity

* Edit changes to text style and opacity for table length

* Edit changes to text style and opacity
  • Loading branch information
stellalc7 authored and cccs-RyanS committed Dec 17, 2021
1 parent 9a0456e commit 4a7a31e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions superset-frontend/src/components/TableSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 4a7a31e

Please sign in to comment.