font-awesome-middleman 4.1.1 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  module Font
2
2
  module Awesome
3
3
  module Middleman
4
- VERSION = "4.1.1"
4
+ VERSION = "4.2.0"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font-awesome-middleman
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.1
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cristian Ferrari, Miguel Michelson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-22 00:00:00.000000000 Z
11
+ date: 2014-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman-core
@@ -74,7 +74,6 @@ files:
74
74
  - app/assets/stylesheets/font-awesome.scss
75
75
  - app/assets/stylesheets/font-awesome/_bordered-pulled.scss
76
76
  - app/assets/stylesheets/font-awesome/_core.scss
77
- - app/assets/stylesheets/font-awesome/_extras.scss
78
77
  - app/assets/stylesheets/font-awesome/_fixed-width.scss
79
78
  - app/assets/stylesheets/font-awesome/_icons.scss
80
79
  - app/assets/stylesheets/font-awesome/_larger.scss
@@ -1,44 +0,0 @@
1
- /* EXTRAS
2
- * -------------------------- */
3
-
4
- /* Stacked and layered icon */
5
-
6
- /* Animated rotating icon */
7
- .#{$fa-css-prefix}-spin {
8
- -webkit-animation: spin 2s infinite linear;
9
- -moz-animation: spin 2s infinite linear;
10
- -o-animation: spin 2s infinite linear;
11
- animation: spin 2s infinite linear;
12
- }
13
-
14
- @-moz-keyframes spin {
15
- 0% { -moz-transform: rotate(0deg); }
16
- 100% { -moz-transform: rotate(359deg); }
17
- }
18
- @-webkit-keyframes spin {
19
- 0% { -webkit-transform: rotate(0deg); }
20
- 100% { -webkit-transform: rotate(359deg); }
21
- }
22
- @-o-keyframes spin {
23
- 0% { -o-transform: rotate(0deg); }
24
- 100% { -o-transform: rotate(359deg); }
25
- }
26
- @-ms-keyframes spin {
27
- 0% { -ms-transform: rotate(0deg); }
28
- 100% { -ms-transform: rotate(359deg); }
29
- }
30
- @keyframes spin {
31
- 0% { transform: rotate(0deg); }
32
- 100% { transform: rotate(359deg); }
33
- }
34
-
35
-
36
- // Icon rotations & flipping
37
- // -------------------------
38
-
39
- .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
40
- .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
41
- .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
42
-
43
- .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
44
- .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }