You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by su...@apache.org on 2021/05/17 21:53:13 UTC

[superset] branch fix-adhoc-filter-margin created (now 5152d12)

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

suddjian pushed a change to branch fix-adhoc-filter-margin
in repository https://gitbox.apache.org/repos/asf/superset.git.


      at 5152d12  fix(explore): add padding to the adhoc filter value select

This branch includes the following new commits:

     new 5152d12  fix(explore): add padding to the adhoc filter value select

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[superset] 01/01: fix(explore): add padding to the adhoc filter value select

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

suddjian pushed a commit to branch fix-adhoc-filter-margin
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 5152d1259cf5b7a56a4481627bc2277f4655f160
Author: David Aaron Suddjian <aa...@gmail.com>
AuthorDate: Mon May 17 14:52:29 2021 -0700

    fix(explore): add padding to the adhoc filter value select
---
 .../FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx
index e1b4aad..c30844a 100644
--- a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx
+++ b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx
@@ -41,6 +41,10 @@ import AdhocFilter, {
 import columnType from 'src/explore/components/controls/FilterControl/columnType';
 
 const SelectWithLabel = styled(Select)`
+  .ant-select-selector {
+    margin-bottom: ${({ theme }) => theme.gridUnit * 4}px;
+  }
+
   .ant-select-selector::after {
     content: '${({ labelText }) => labelText || '\\A0'}';
     display: inline-block;