You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2022/05/18 06:46:06 UTC

[pulsar-site] branch main updated: fix filter

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

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 453a4e5a94a fix filter
     new e8d7d0b9b6d Merge pull request #82 from zrsaber/main
453a4e5a94a is described below

commit 453a4e5a94aa23b44890da7ef10d98b5d57bdbec
Author: zhaorunqi <ru...@isrc.iscas.ac.cn>
AuthorDate: Wed May 18 14:36:27 2022 +0800

    fix filter
---
 site2/website-next/src/pages/case-studies.js | 2 +-
 site2/website-next/src/pages/ecosystem.js    | 8 +-------
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/site2/website-next/src/pages/case-studies.js b/site2/website-next/src/pages/case-studies.js
index 02ac90e0c08..b1da33210c4 100644
--- a/site2/website-next/src/pages/case-studies.js
+++ b/site2/website-next/src/pages/case-studies.js
@@ -379,7 +379,7 @@ const StyledOption = styled(OptionUnstyled)(
 );
 
 const StyledPopper = styled(PopperUnstyled)`
-  z-index: 1;
+  z-index: 10;
 `;
 
 const Paragraph = styled('p')(
diff --git a/site2/website-next/src/pages/ecosystem.js b/site2/website-next/src/pages/ecosystem.js
index c32ce4a81cd..c6bba84ce68 100644
--- a/site2/website-next/src/pages/ecosystem.js
+++ b/site2/website-next/src/pages/ecosystem.js
@@ -61,30 +61,25 @@ const StyledButton = styled('button')(
   text-align: left;
   line-height: 1.5;
   color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
-  z-index:10000;
 
   &:hover {
     background: ${theme.palette.mode === 'dark' ? '' : grey[100]};
     border-color: ${theme.palette.mode === 'dark' ? grey[700] : grey[400]};
-    z-index:10000;
   }
 
   &.${selectUnstyledClasses.focusVisible} {
     outline: 3px solid ${theme.palette.mode === 'dark' ? blue[600] : blue[100]};
-    z-index:10000;
   }
 
   &.${selectUnstyledClasses.expanded} {
     &::after {
       content: '▴';
-      z-index:10000;
     }
   }
 
   &::after {
     content: '▾';
     float: right;
-    z-index:10000;
   }
   `,
 );
@@ -103,7 +98,6 @@ const StyledListbox = styled('ul')(
   color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
   overflow: auto;
   outline: 0px;
-  z-index:10000;
   `,
 );
 
@@ -145,7 +139,7 @@ const StyledOption = styled(OptionUnstyled)(
 );
 
 const StyledPopper = styled(PopperUnstyled)`
-  z-index: 1;
+  z-index: 10;
 `;
 
 const Paragraph = styled('p')(