mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
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
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user