]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove accidentally commited file
authorArtur Signell <artur@vaadin.com>
Mon, 24 Aug 2015 17:02:36 +0000 (20:02 +0300)
committerHenri Sara <hesara@vaadin.com>
Wed, 2 Sep 2015 07:47:15 +0000 (10:47 +0300)
Change-Id: I115e964260e575d8378fe44e679785658e96dcb6

WebContent/VAADIN/themes/valo/util/bourbon/functions/_transition-property-name.scss~ [deleted file]

diff --git a/WebContent/VAADIN/themes/valo/util/bourbon/functions/_transition-property-name.scss~ b/WebContent/VAADIN/themes/valo/util/bourbon/functions/_transition-property-name.scss~
deleted file mode 100644 (file)
index 4b23fcc..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Return vendor-prefixed property names if appropriate
-// Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background
-//************************************************************************//
-@function transition-property-names($props, $vendor: false) {
-       $new-props: ();
-       
-       @each $prop in $props {
-               $new-props: append($new-props, transition-property-name($prop, $vendor), comma);
-       }
-
-       @return $new-props;
-}
-
-@function transition-property-name($prop, $vendor: false) {
-       // put other properties that need to be prefixed here aswell
-       @if $vendor and $prop == transform {
-               @return unquote( '-' + $vendor + '-' + $prop);
-       }
-       @else {
-               @return $prop;
-       }
-}
\ No newline at end of file