You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/04/04 14:20:03 UTC

[superset] branch master updated: Add theme color (#19490)

This is an automated email from the ASF dual-hosted git repository.

diegopucci 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 4b922873ae Add theme color (#19490)
4b922873ae is described below

commit 4b922873ae4fc7ee480e28c3b59c6f2b15d891b2
Author: Geido <60...@users.noreply.github.com>
AuthorDate: Mon Apr 4 17:19:54 2022 +0300

    Add theme color (#19490)
---
 .../src/ReactParallelCoordinates.jsx                                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx
index 8633607984..9e0ec30e54 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx
@@ -39,7 +39,7 @@ export default styled(ParallelCoordianes)`
       overflow: auto;
       div.row {
         &:hover {
-          background-color: #ccc;
+          background-color: ${({ theme }) => theme.colors.grayscale.light2};
         }
       }
     }