You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/11/18 10:17:49 UTC

[myfaces-tobago] 02/04: feat(selectMany): width=0 for readonly filter

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

hnoeth pushed a commit to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 32c3083605bd345f04aae0cd8139983cdcbaf960
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Thu Nov 17 12:38:32 2022 +0100

    feat(selectMany): width=0 for readonly filter
    
    Issue: TOBAGO-2159
---
 tobago-theme/src/main/scss/_tobago.scss | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tobago-theme/src/main/scss/_tobago.scss b/tobago-theme/src/main/scss/_tobago.scss
index 7b129d812e..58a28fb3f5 100644
--- a/tobago-theme/src/main/scss/_tobago.scss
+++ b/tobago-theme/src/main/scss/_tobago.scss
@@ -1292,6 +1292,11 @@ tobago-select-many {
       &:focus {
         box-shadow: none;
       }
+
+      &:read-only {
+        width: 0;
+        min-width: 0;
+      }
     }
   }