less-rails-fontawesome 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ad61bef0b36b6dd3ac53dc409b67358535a7936
4
- data.tar.gz: 2f3025de0348369fab4d9eb878ad7ac73d0b7258
3
+ metadata.gz: 7080f306a780fbe774007622621ad35dded93247
4
+ data.tar.gz: b8d9956524451e87a3b73f4ad0acb55350996e41
5
5
  SHA512:
6
- metadata.gz: 349185de71469146fb097ff85904cebbd667e548a4cff1289f70e7133595793c5a38e8c2fa6ad184cb15cbb78199286abc884474b3501968d40bb43974471216
7
- data.tar.gz: 61675d5ade83f6bd2354187e84492410e0cb6725667de22e9dd856caee1bd348ffdcb98fe358d77adb8c79595cbb22e082e868da4a77e71d99af721a23053000
6
+ metadata.gz: 116c1c19d45364e8c790c557f472bde91d960ec07c685df8a2ebd308324341366456e6f5cb1ba6b822e7465b879594fb88b18db7e62532b2fb4cbc214a7e5c9c
7
+ data.tar.gz: 23a48cc6e638a4cb0a7c9ade47a12dc5f4a91a515cb5a0b496c8da4d69d0ceb1fe0b3a4c5e35f8a7ff1a49a2f1961bffe08e970e4f6245d2dbd8912c08348239
data/README.md CHANGED
@@ -28,8 +28,8 @@ gem 'less-rails-fontawesome'
28
28
  Then in your *app/assets/stylesheets/application.css.less*:
29
29
 
30
30
  ```css
31
- @import 'font-awesome';
32
- @import 'font-awesome-ie7';
31
+ @import 'font-awesome/font-awesome';
32
+ @import 'font-awesome/font-awesome-ie7';
33
33
  ```
34
34
 
35
35
  You can also use it with the [less-rails-bootstrap](https://github.com/metaskills/less-rails-bootstrap) gem.
@@ -37,8 +37,8 @@ Just import *fontawesome* right after *twitter/bootstrap*:
37
37
 
38
38
  ```css
39
39
  @import 'twitter/bootstrap';
40
- @import 'font-awesome';
41
- @import 'font-awesome-ie7';
40
+ @import 'font-awesome/font-awesome';
41
+ @import 'font-awesome/font-awesome-ie7';
42
42
  ```
43
43
 
44
44
  <!-- [Simple demo](http://sharp-ocean-6085.herokuapp.com/). -->
@@ -2,7 +2,7 @@ module Font
2
2
  module Awesome
3
3
  module Less
4
4
  module Rails
5
- VERSION = "0.5.0"
5
+ VERSION = "0.5.1"
6
6
  end
7
7
  end
8
8
  end
@@ -76,3 +76,9 @@
76
76
  &.pull-right.icon-2x { margin-left: .2em; }
77
77
  }
78
78
  }
79
+
80
+ /* Fixes alignment in nav lists */
81
+ .nav-list [class^="icon-"],
82
+ .nav-list [class*=" icon-"] {
83
+ line-height: inherit;
84
+ }
@@ -10,7 +10,6 @@
10
10
  [class*=" icon-"]:before {
11
11
  text-decoration: inherit;
12
12
  display: inline-block;
13
- cursor: default;
14
13
  speak: none;
15
14
  }
16
15
 
@@ -12,6 +12,9 @@
12
12
  -webkit-animation: spin 2s infinite linear;
13
13
  animation: spin 2s infinite linear;
14
14
  }
15
+
16
+ /* Prevent stack and spinners from being taken inline when inside a link */
17
+ a .icon-stack,
15
18
  a .icon-spin {
16
19
  display: inline-block;
17
20
  text-decoration: none;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Font Awesome 3.2.0
2
+ * Font Awesome 3.2.1
3
3
  * the iconic font designed for Bootstrap
4
4
  * ------------------------------------------------------------------------------
5
5
  * The full suite of pictographic icons, examples, and documentation can be
@@ -176,6 +176,10 @@ a [class*=" icon-"] {
176
176
  .ie7icon('&#xf013;');
177
177
  }
178
178
 
179
+ .icon-gear {
180
+ .ie7icon('&#xf013;');
181
+ }
182
+
179
183
 
180
184
  .icon-trash {
181
185
  .ie7icon('&#xf014;');
@@ -719,6 +723,10 @@ a [class*=" icon-"] {
719
723
  .ie7icon('&#xf085;');
720
724
  }
721
725
 
726
+ .icon-gears {
727
+ .ie7icon('&#xf085;');
728
+ }
729
+
722
730
 
723
731
  .icon-comments {
724
732
  .ie7icon('&#xf086;');
@@ -1873,7 +1881,7 @@ a [class*=" icon-"] {
1873
1881
  }
1874
1882
 
1875
1883
 
1876
- .icon-dribble {
1884
+ .icon-dribbble {
1877
1885
  .ie7icon('&#xf17d;');
1878
1886
  }
1879
1887
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Font Awesome 3.2.0
2
+ * Font Awesome 3.2.1
3
3
  * the iconic font designed for Bootstrap
4
4
  * ------------------------------------------------------------------------------
5
5
  * The full suite of pictographic icons, examples, and documentation can be
@@ -20,6 +20,7 @@
20
20
  .icon-power-off:before,
21
21
  .icon-off:before { content: @off; }
22
22
  .icon-signal:before { content: @signal; }
23
+ .icon-gear:before,
23
24
  .icon-cog:before { content: @cog; }
24
25
  .icon-trash:before { content: @trash; }
25
26
  .icon-home:before { content: @home; }
@@ -129,6 +130,7 @@
129
130
  .icon-facebook-sign:before { content: @facebook-sign; }
130
131
  .icon-camera-retro:before { content: @camera-retro; }
131
132
  .icon-key:before { content: @key; }
133
+ .icon-gears:before,
132
134
  .icon-cogs:before { content: @cogs; }
133
135
  .icon-comments:before { content: @comments; }
134
136
  .icon-thumbs-up-alt:before { content: @thumbs-up-alt; }
@@ -363,7 +365,7 @@
363
365
  .icon-windows:before { content: @windows; }
364
366
  .icon-android:before { content: @android; }
365
367
  .icon-linux:before { content: @linux; }
366
- .icon-dribble:before { content: @dribble; }
368
+ .icon-dribbble:before { content: @dribbble; }
367
369
  .icon-skype:before { content: @skype; }
368
370
  .icon-foursquare:before { content: @foursquare; }
369
371
  .icon-trello:before { content: @trello; }
@@ -1,7 +1,7 @@
1
1
  // Variables
2
2
  // --------------------------
3
3
 
4
- @FontAwesomeVersion: "3.2.0";
4
+ @FontAwesomeVersion: "3.2.1";
5
5
  @borderColor: #eee;
6
6
  @iconMuted: #eee;
7
7
  @iconLight: #fff;
@@ -703,7 +703,7 @@
703
703
 
704
704
  @linux: "\f17c";
705
705
 
706
- @dribble: "\f17d";
706
+ @dribbble: "\f17d";
707
707
 
708
708
  @skype: "\f17e";
709
709
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-fontawesome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wlodek Bzyl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-17 00:00:00.000000000 Z
11
+ date: 2013-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties