This is an automated email from the ASF dual-hosted git repository. lilykuang pushed a commit to branch table-time-compare-hide-show in repository https://gitbox.apache.org/repos/asf/superset.git
commit b48bff9bb67191964e710a31996b82bb69409533 Author: lilykuang <[email protected]> AuthorDate: Fri Mar 8 11:33:26 2024 -0800 updated style --- .../plugins/plugin-chart-table/src/DataTable/DataTable.tsx | 10 ++++++++-- .../plugins/plugin-chart-table/src/TableChart.tsx | 4 +++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx index 18c7ac6214..242029e163 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx @@ -362,7 +362,9 @@ export default typedMemo(function DataTable<D extends object>({ {hasGlobalControl ? ( <div ref={globalControlRef} className="form-inline dt-controls"> <div className="row"> - <div className="col-sm-5"> + <div + className={renderTimeComparisonDropdown ? 'col-sm-5' : 'col-sm-6'} + > {hasPagination ? ( <SelectPageSize total={resultsSize} @@ -378,7 +380,11 @@ export default typedMemo(function DataTable<D extends object>({ ) : null} </div> {searchInput ? ( - <div className="col-sm-5"> + <div + className={ + renderTimeComparisonDropdown ? 'col-sm-5' : 'col-sm-6' + } + > <GlobalFilter<D> searchInput={ typeof searchInput === 'boolean' ? undefined : searchInput diff --git a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx index be27e3102c..c274296ccd 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx @@ -606,7 +606,9 @@ export default function TableChart<D extends DataRecord = DataRecord>( <span css={css` float: right; - color: ${theme.colors.grayscale.base}; + & svg { + color: ${theme.colors.grayscale.base} !important; + } `} > {hideComparisonKeys.includes(key) ? (
