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 2018/09/18 17:29:55 UTC

[royale-asjs] branch develop updated: fix height of Textinput and Combobox in iOS

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 deaa095  fix height of Textinput and Combobox in iOS
deaa095 is described below

commit deaa0950c55f5897e496d313603f9ae9166cefc5
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Sep 18 19:29:45 2018 +0200

    fix height of Textinput and Combobox in iOS
---
 frameworks/projects/Jewel/src/main/resources/defaults.css          | 1 +
 frameworks/projects/Jewel/src/main/sass/components/_textinput.sass | 1 +
 2 files changed, 2 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index afa2810..984af2d 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -3351,6 +3351,7 @@ j|TableItemRenderer {
   margin: 0;
   padding: 0.68em 1.12em;
   width: 100%;
+  height: 100%;
   max-width: 100%;
   flex: 1 0 auto;
   outline: none;
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_textinput.sass b/frameworks/projects/Jewel/src/main/sass/components/_textinput.sass
index 8700191..5c20298 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_textinput.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_textinput.sass
@@ -35,6 +35,7 @@ $textinput-padding-horizontal: 1.12em !default
 			padding: $textinput-padding-vertical $textinput-padding-horizontal
 
 			width: 100%
+			height: 100%
 			max-width: 100%
 
 			flex: 1 0 auto