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 77c838e  fix incorrect rule for jewel item affecting Lists for phones 
and tablets
77c838e is described below

commit 77c838e284ab08072adc4456708cb16661ac719a
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Jan 31 22:30:29 2019 +0100

    fix incorrect rule for jewel item affecting Lists for phones and tablets
---
 frameworks/projects/Jewel/src/main/resources/defaults.css         | 3 +--
 frameworks/projects/Jewel/src/main/sass/components/_combobox.sass | 5 +++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css 
b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 545f249..cc104a7 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -419,8 +419,7 @@ j|ComboBox {
   .combobox-popup .jewel.list {
     max-height: 240px !important;
   }
-
-  .jewel.item {
+  .combobox-popup .jewel.list .jewel.item {
     min-height: 48px !important;
   }
 }
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_combobox.sass 
b/frameworks/projects/Jewel/src/main/sass/components/_combobox.sass
index 50a5c3f..4a1f6e1 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_combobox.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_combobox.sass
@@ -141,8 +141,9 @@ $combobox-item-min-heigh: 34px
     .combobox-popup
         .jewel.list
             max-height: ( $combobox-item-min-heigh + 14 ) * 5 !important
-    .jewel.item
-        min-height: $combobox-item-min-heigh + 14 !important //this should 
match $item-min-heigh in _itemrenderer.sass
+            
+            .jewel.item
+                min-height: $combobox-item-min-heigh + 14 !important //this 
should match $item-min-heigh in _itemrenderer.sass
 
 @media (min-width: $desktop)
     .combobox-popup

Reply via email to