You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/19 16:58:26 UTC

[royale-asjs] branch develop updated: jewel-group: revert overflow to visible, since is what user are used to from Flex Group

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

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0325c81  jewel-group: revert overflow to visible, since is what user are used to from Flex Group
0325c81 is described below

commit 0325c817a2f037a571899f766d61ed2457dfd6e3
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Mar 19 17:58:21 2020 +0100

    jewel-group: revert overflow to visible, since is what user are used to from Flex Group
---
 frameworks/projects/Jewel/src/main/resources/defaults.css | 2 +-
 frameworks/projects/Jewel/src/main/sass/_global.sass      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 1ba9718..d120080 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -75,7 +75,7 @@ j|Group {
 }
 
 .jewel.group {
-  overflow: hidden;
+  overflow: visible;
 }
 
 j|HGroup {
diff --git a/frameworks/projects/Jewel/src/main/sass/_global.sass b/frameworks/projects/Jewel/src/main/sass/_global.sass
index 4732e19..d7f4ff0 100644
--- a/frameworks/projects/Jewel/src/main/sass/_global.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_global.sass
@@ -79,7 +79,7 @@ j|Group
 	IBeadView: ClassReference("org.apache.royale.html.beads.GroupView")
 
 .jewel.group
-	overflow: hidden // make inner content adapt to the group height
+	overflow: visible // although overflow is visible by default enforce Group has no clipping
 
 j|HGroup
 	IBeadLayout: ClassReference("org.apache.royale.jewel.beads.layouts.HorizontalLayout")