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/09/10 07:41:17 UTC

[royale-asjs] branch develop updated: jewel-responsive-size: was failing for some components (fix #907)

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 3d7a3dd  jewel-responsive-size: was failing for some components (fix #907)
3d7a3dd is described below

commit 3d7a3ddb27cbcf6153e4bc7b7dbbfe7269c1ac60
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Sep 10 09:41:02 2020 +0200

    jewel-responsive-size: was failing for some components (fix #907)
---
 frameworks/projects/Jewel/src/main/resources/defaults.css | 8 ++++----
 frameworks/projects/Jewel/src/main/sass/_mixins.sass      | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 750450a..51b0c1e 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -3157,7 +3157,7 @@ j|Label {
 
 @media (max-width: 767px) {
   .visible-phone {
-    display: block !important;
+    display: flex !important;
   }
 
   .hidden-phone {
@@ -3166,7 +3166,7 @@ j|Label {
 }
 @media (min-width: 768px) and (max-width: 991px) {
   .visible-tablet {
-    display: block !important;
+    display: flex !important;
   }
 
   .hidden-tablet {
@@ -3175,7 +3175,7 @@ j|Label {
 }
 @media (min-width: 992px) and (max-width: 1599px) {
   .visible-desktop {
-    display: block !important;
+    display: flex !important;
   }
 
   .hidden-desktop {
@@ -3184,7 +3184,7 @@ j|Label {
 }
 @media (min-width: 1600px) {
   .visible-widescreen {
-    display: block !important;
+    display: flex !important;
   }
 
   .hidden-widescreen {
diff --git a/frameworks/projects/Jewel/src/main/sass/_mixins.sass b/frameworks/projects/Jewel/src/main/sass/_mixins.sass
index 4df3cdf..e0ea51c 100644
--- a/frameworks/projects/Jewel/src/main/sass/_mixins.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_mixins.sass
@@ -26,7 +26,7 @@
 
 =visible-hidden-responsive-rules($size)
 	.visible-#{$size}
-		display: block !important
+		display: flex !important
 
 	.hidden-#{$size}
 		display: none !important