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/04/09 17:03:07 UTC

[royale-asjs] branch develop updated: jewel-drawer: fix drawer footer bar in Safari since was taking less space than expected

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 ed86d67  jewel-drawer: fix drawer footer bar in Safari since was taking less space than expected
ed86d67 is described below

commit ed86d671a614062cda300604128b3c6b7a0cc576
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Apr 9 19:03:03 2020 +0200

    jewel-drawer: fix drawer footer bar in Safari since was taking less space than expected
---
 frameworks/projects/Jewel/src/main/resources/defaults.css       | 2 +-
 frameworks/projects/Jewel/src/main/sass/components/_drawer.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 fd58f04..002a235 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -798,7 +798,7 @@ j|Divider {
 }
 
 .jewel.drawercontent {
-  flex-grow: 1;
+  flex: 1 100 auto;
   margin: 0;
   overflow-x: hidden;
   overflow-y: auto;
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_drawer.sass b/frameworks/projects/Jewel/src/main/sass/components/_drawer.sass
index ebfec06..d54f108 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_drawer.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_drawer.sass
@@ -118,7 +118,7 @@ $drawerfooter-bar-row-height: 66px
 
 // DrawerContent
 .jewel.drawercontent
-    flex-grow: 1
+    flex: 1 100 auto
     margin: 0
     overflow-x: hidden
     overflow-y: auto