This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch feature/jewel-ui-set in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 805b0abc243019462d0f78e91fc82f530f7f5eb9 Author: Carlos Rovira <[email protected]> AuthorDate: Sun Mar 25 23:48:33 2018 +0200 this styles div, span (no dot) are not seeing in final app. the them I must to move them from theme to final app --- examples/royale/JewelExample/src/main/royale/App.mxml | 3 ++- frameworks/themes/JewelTheme/src/main/resources/defaults.css | 6 ++++++ frameworks/themes/JewelTheme/src/main/sass/_global.sass | 5 +++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/examples/royale/JewelExample/src/main/royale/App.mxml b/examples/royale/JewelExample/src/main/royale/App.mxml index 2d53f6a..c85a8a3 100644 --- a/examples/royale/JewelExample/src/main/royale/App.mxml +++ b/examples/royale/JewelExample/src/main/royale/App.mxml @@ -49,13 +49,14 @@ <local:TextInputPlayGround/> <local:CheckBoxPlayGround/> <local:RadioButtonPlayGround/> - <local:SliderPlayGround/> + </js:Group> <js:Group> <js:beads> <j:VerticalLayoutWithPaddingAndGap gap="10"/> </js:beads> + <local:SliderPlayGround/> <local:HeadingsAndText/> </js:Group> </js:View> diff --git a/frameworks/themes/JewelTheme/src/main/resources/defaults.css b/frameworks/themes/JewelTheme/src/main/resources/defaults.css index 0a78701..8f90431 100644 --- a/frameworks/themes/JewelTheme/src/main/resources/defaults.css +++ b/frameworks/themes/JewelTheme/src/main/resources/defaults.css @@ -49,6 +49,12 @@ span { font-size: 14px; } +div { + font-size: 14px; + white-space: normal; + word-wrap: break-word; +} + .jewel.button { cursor: pointer; display: inline-block; diff --git a/frameworks/themes/JewelTheme/src/main/sass/_global.sass b/frameworks/themes/JewelTheme/src/main/sass/_global.sass index 0a30c44..89db9f5 100644 --- a/frameworks/themes/JewelTheme/src/main/sass/_global.sass +++ b/frameworks/themes/JewelTheme/src/main/sass/_global.sass @@ -49,3 +49,8 @@ h4 span font-size: 14px + +div + font-size: 14px + white-space: normal + word-wrap: break-word -- To stop receiving notification emails like this one, please contact [email protected].
