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 2019/01/21 12:04:12 UTC

[royale-asjs] branch develop updated: fix cursor-pointer

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 57e9e6c  fix cursor-pointer
57e9e6c is described below

commit 57e9e6ca6b533c311cd1b25d8d374c4e2113c13e
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Jan 21 13:04:03 2019 +0100

    fix cursor-pointer
---
 frameworks/projects/Jewel/src/main/resources/defaults.css | 2 +-
 frameworks/projects/Jewel/src/main/sass/_global.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 09416cb..9169a30 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -41,7 +41,7 @@ button, input, textarea {
 }
 
 .cursor-pointer {
-  cursor: pointer;
+  cursor: pointer !important;
 }
 
 j|View {
diff --git a/frameworks/projects/Jewel/src/main/sass/_global.sass b/frameworks/projects/Jewel/src/main/sass/_global.sass
index c2fe47b..30415d9 100644
--- a/frameworks/projects/Jewel/src/main/sass/_global.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_global.sass
@@ -42,7 +42,7 @@ button, input, textarea
 	font-size: 100%
 
 .cursor-pointer
-	cursor: pointer
+	cursor: pointer !important
 	
 j|View
 	IBeadView: ClassReference("org.apache.royale.html.beads.GroupView")