diff options
author | Artur Signell <artur@vaadin.com> | 2015-08-24 20:02:36 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2015-09-02 10:47:15 +0300 |
commit | 3e40e02f094889028df243e327c7219bfd55e5f9 (patch) | |
tree | 2ef12f070f672ff6ab66b514f678c985a6d5b465 | |
parent | 81c83d1c98018f8a7527aa5ca4ccee296213d0b3 (diff) | |
download | vaadin-framework-3e40e02f094889028df243e327c7219bfd55e5f9.tar.gz vaadin-framework-3e40e02f094889028df243e327c7219bfd55e5f9.zip |
Remove accidentally commited file
Change-Id: I115e964260e575d8378fe44e679785658e96dcb6
-rw-r--r-- | WebContent/VAADIN/themes/valo/util/bourbon/functions/_transition-property-name.scss~ | 22 |
1 files changed, 0 insertions, 22 deletions
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 index 4b23fccbed..0000000000 --- a/WebContent/VAADIN/themes/valo/util/bourbon/functions/_transition-property-name.scss~ +++ /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 |