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/02 11:29:45 UTC

[royale-asjs] branch develop updated: refactor CSS function to mixins to make available to other components

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 b240409  refactor CSS function to mixins to make available to other components
b240409 is described below

commit b240409a87d111ac253fb08f75c7fbeb65c15b21
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Sep 2 13:29:41 2018 +0200

    refactor CSS function to mixins to make available to other components
---
 frameworks/projects/Jewel/src/main/sass/_mixins.sass                 | 4 ++++
 frameworks/projects/Jewel/src/main/sass/components/_datechooser.sass | 4 ----
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/sass/_mixins.sass b/frameworks/projects/Jewel/src/main/sass/_mixins.sass
index 25c4772..4df3cdf 100644
--- a/frameworks/projects/Jewel/src/main/sass/_mixins.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_mixins.sass
@@ -30,3 +30,7 @@
 
 	.hidden-#{$size}
 		display: none !important
+
+//$animation-curve-timing-function: cubic-bezier(.3, 0, .1, 2) !default
+@function animation-standard($name, $duration, $delay: 0ms)
+	@return $name $duration $delay //$animation-curve-timing-function
\ No newline at end of file
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_datechooser.sass b/frameworks/projects/Jewel/src/main/sass/components/_datechooser.sass
index 93de510..bd46d75 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_datechooser.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_datechooser.sass
@@ -24,10 +24,6 @@ $datechooser-button-size: 22px
 $datechooser-button-xoffset: calc(50% - #{$datechooser-button-size/2})
 $datechooser-button-yoffset: calc(50% - #{$datechooser-button-size/2})
 $datechooser-tableitem-size: 38px
- 
-//$animation-curve-timing-function: cubic-bezier(.3, 0, .1, 2) !default
-@function animation-standard($name, $duration, $delay: 0ms)
-    @return $name $duration $delay //$animation-curve-timing-function
 
 .jewel.datechooser