font-icons 1.0.3.beta → 1.0.4.beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +3 -3
- data/VERSION.yml +1 -1
- metadata +18 -2
data/README.markdown
CHANGED
|
@@ -27,7 +27,7 @@ $ sudo gem install font-icons --pre
|
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
|
-
```
|
|
30
|
+
```css
|
|
31
31
|
// Import font-icons compass extension
|
|
32
32
|
@import "font-icons";
|
|
33
33
|
|
|
@@ -40,14 +40,14 @@ ul.entypo {
|
|
|
40
40
|
list-style-image: none;
|
|
41
41
|
li {
|
|
42
42
|
@include font-icon-base(entypo);
|
|
43
|
-
&.menu-item-001 { @extend
|
|
43
|
+
&.menu-item-001 { @extend %entypo-music; }
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
// To any piece of content
|
|
48
48
|
.randomcontent {
|
|
49
49
|
@include font-icon-base(entypo);
|
|
50
|
-
@extend
|
|
50
|
+
@extend %entypo-music;
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
data/VERSION.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: font-icons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4.beta
|
|
5
5
|
prerelease: 6
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-09-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: compass
|
|
@@ -27,6 +27,22 @@ dependencies:
|
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0.11'
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: sass
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ~>
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: 3.2.0
|
|
38
|
+
type: :runtime
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ~>
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 3.2.0
|
|
30
46
|
description: Font Icons includes a base font called EntypoRegular and easy to remember
|
|
31
47
|
variable names. Font Icons produces a number of mixins that will allow for the easy
|
|
32
48
|
generation of font-face declarations and icons.
|