compass_icon_fonts 0.0.2 → 0.0.4

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: a7d0e53339a52cb06656ca24025a365717cf6901
4
- data.tar.gz: 6aa5e71fd26ae8fde5a65876ecd5d203dd57becc
3
+ metadata.gz: e36b05ab49961692ed428a311690681ee940d217
4
+ data.tar.gz: 7e370e3c2e5230e6213854d9009deb0f8bf2962d
5
5
  SHA512:
6
- metadata.gz: c04e9547ba1439b9be25e44102a734b97965d4a48230c22c009f3fc254e3014a67741131fbfc52381ecf88282f02fcc655e8bac630737cbbdcab1a6cd120f88f
7
- data.tar.gz: 86df5dcc0564177a28405eb79d46283a416b3c026659015dbff555d430abbfbfc5c3c6d1554bf36a0ab79102a14175f2e6bd23cfcb1dbea45813c6ff0bf9a1cf
6
+ metadata.gz: 8c62b33d509c1ca2f0332b6b85dce070f0f3d4e7682d322fd7243ec347cf000646dab1f60461413c8c36cb8512ea0a0772322aa41337b082286646ab20fc2905
7
+ data.tar.gz: 53abd02ed252c27ac38df7d0f84ebb1d4af50739df9744f0369f0e847a81cda3239ce1304c811265f699dcf182c52c8b7e367d9041d2ee10bbbdfdf1df7a6353
@@ -53,7 +53,7 @@ module CompassIconFonts::Fonts
53
53
  destination = 'stylesheets/compass-icon-fonts/%s.scss' % dashed_name
54
54
  erb = ERB.new(File.read(File.expand_path(template, CompassIconFonts.base_directory)))
55
55
 
56
- locals = { name: name, variable: dashed_name, pairs: pairs, size: size, files: fonts.product(extensions).map{|file| file.join '.' } }
56
+ locals = { name: name, variable: dashed_name, pairs: pairs, size: size, files: fonts.product(extensions.reject{|ext| ext == 'eot'}).map{|file| file.join '.' } }
57
57
  scss = erb.result(OpenStruct.new(locals).instance_eval{ binding })
58
58
 
59
59
  File.write(File.expand_path(destination, CompassIconFonts.base_directory), scss)
@@ -10,9 +10,12 @@ $compass-icon-fonts-family: "<%= name %>";
10
10
 
11
11
  $compass-icon-fonts-class: "<%= variable %>";
12
12
 
13
+ $compass-icon-fonts-eot: "<%= variable %>.eot";
14
+
13
15
  $compass-icon-fonts-files: font-files("<%= files.join('", "') %>");
14
16
 
15
17
  $compass-icon-fonts-size: <%= size %>;
16
18
 
17
- $compass-icon-fonts-characters:<% last = pairs.values.last %><% pairs.each do |classname, character| %>
18
- "<%= classname %>", "<%= character %>"<%= character == last ? ';' : ',' %><% end %>
19
+ $compass-icon-fonts-keywords: <%= pairs.keys.map{|k| '"%s"' % k}.join(', ') %>;
20
+ <% pairs.each do |classname, character| %>
21
+ %<%= variable %>-<%= classname %>-character { content: "<%= character %>"; }<% end %>
@@ -1,3 +1,3 @@
1
1
  module CompassIconFonts
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  $compass-icon-fonts-horizontalPadding: 0.2em !default;
2
2
 
3
3
  @mixin compass-icon-fonts-family() {
4
- @include font-face($compass-icon-fonts-family, $compass-icon-fonts-files);
4
+ @include font-face($compass-icon-fonts-family, $compass-icon-fonts-files, $compass-icon-fonts-eot);
5
5
 
6
6
  %compass-icon-fonts-#{$compass-icon-fonts-class} {
7
7
  font-size: $compass-icon-fonts-size;
@@ -19,26 +19,25 @@ $compass-icon-fonts-horizontalPadding: 0.2em !default;
19
19
  }
20
20
 
21
21
  @mixin compass-icon-fonts-set($set: all, $prefix: $compass-icon-fonts-class, $append: false) {
22
- @for $i from 1 through length($compass-icon-fonts-characters)/2 {
23
- $keyword: nth($compass-icon-fonts-characters, ($i*2 - 1));
24
- $character: nth($compass-icon-fonts-characters, $i*2);
25
-
26
- @if $set == "all" or index($set, $keyword) {
27
- %#{$compass-icon-fonts-class}-#{$keyword} {
28
- @extend %compass-icon-fonts-#{$compass-icon-fonts-class};
29
- content: $character;
30
- }
22
+ @if $set == all {
23
+ $set: $compass-icon-fonts-keywords;
24
+ }
31
25
 
32
- .#{$prefix}-#{$keyword}:before {
33
- @extend %compass-icon-fonts-#{$compass-icon-fonts-class}-before;
34
- @extend %#{$compass-icon-fonts-class}-#{$keyword};
35
- }
26
+ @each $keyword in $set {
27
+ %#{$compass-icon-fonts-class}-#{$keyword} {
28
+ @extend %compass-icon-fonts-#{$compass-icon-fonts-class};
29
+ @extend %#{$compass-icon-fonts-class}-#{$keyword}-character;
30
+ }
31
+
32
+ .#{$prefix}-#{$keyword}:before {
33
+ @extend %compass-icon-fonts-#{$compass-icon-fonts-class}-before;
34
+ @extend %#{$compass-icon-fonts-class}-#{$keyword};
35
+ }
36
36
 
37
- @if $append {
38
- .#{$prefix}-#{$keyword}-append:after {
39
- @extend %compass-icon-fonts-#{$compass-icon-fonts-class}-after;
40
- @extend %#{$compass-icon-fonts-class}-#{$keyword};
41
- }
37
+ @if $append {
38
+ .#{$prefix}-#{$keyword}-append:after {
39
+ @extend %compass-icon-fonts-#{$compass-icon-fonts-class}-after;
40
+ @extend %#{$compass-icon-fonts-class}-#{$keyword};
42
41
  }
43
42
  }
44
43
  }
@@ -1,7 +1,7 @@
1
1
  //
2
2
  // EntypoSocial
3
3
  //
4
- // generated 05/07/13 12:56:45 PM
4
+ // generated 05/28/13 12:07:52 PM
5
5
 
6
6
  @import "compass/css3/font-face";
7
7
  @import "compass-icon-fonts";
@@ -10,54 +10,57 @@ $compass-icon-fonts-family: "EntypoSocial";
10
10
 
11
11
  $compass-icon-fonts-class: "entypo-social";
12
12
 
13
- $compass-icon-fonts-files: font-files("entypo-social.eot", "entypo-social.woff", "entypo-social.ttf", "entypo-social.svg");
13
+ $compass-icon-fonts-eot: "entypo-social.eot";
14
+
15
+ $compass-icon-fonts-files: font-files("entypo-social.woff", "entypo-social.ttf", "entypo-social.svg");
14
16
 
15
17
  $compass-icon-fonts-size: 1.25em;
16
18
 
17
- $compass-icon-fonts-characters:
18
- "github", "",
19
- "c-github", "",
20
- "flickr", "",
21
- "c-flickr", "",
22
- "vimeo", "",
23
- "c-vimeo", "",
24
- "twitter", "",
25
- "c-twitter", "",
26
- "facebook", "",
27
- "c-facebook", "",
28
- "s-facebook", "",
29
- "google+", "",
30
- "c-google+", "",
31
- "pinterest", "",
32
- "c-pinterest", "",
33
- "tumblr", "",
34
- "c-tumblr", "",
35
- "linkedin", "",
36
- "c-linkedin", "",
37
- "dribbble", "",
38
- "c-dribbble", "",
39
- "stumbleupon", "",
40
- "c-stumbleupon", "",
41
- "lastfm", "",
42
- "c-lastfm", "",
43
- "rdio", "",
44
- "c-rdio", "",
45
- "spotify", "",
46
- "c-spotify", "",
47
- "qq", "",
48
- "instagram", "",
49
- "dropbox", "",
50
- "evernote", "",
51
- "flattr", "",
52
- "skype", "",
53
- "c-skype", "",
54
- "renren", "",
55
- "sina-weibo", "",
56
- "paypal", "",
57
- "picasa", "",
58
- "soundcloud", "",
59
- "mixi", "",
60
- "behance", "",
61
- "google-circles", "",
62
- "vk", "",
63
- "smashing", "";
19
+ $compass-icon-fonts-keywords: "github", "c-github", "flickr", "c-flickr", "vimeo", "c-vimeo", "twitter", "c-twitter", "facebook", "c-facebook", "s-facebook", "google+", "c-google+", "pinterest", "c-pinterest", "tumblr", "c-tumblr", "linkedin", "c-linkedin", "dribbble", "c-dribbble", "stumbleupon", "c-stumbleupon", "lastfm", "c-lastfm", "rdio", "c-rdio", "spotify", "c-spotify", "qq", "instagram", "dropbox", "evernote", "flattr", "skype", "c-skype", "renren", "sina-weibo", "paypal", "picasa", "soundcloud", "mixi", "behance", "google-circles", "vk", "smashing";
20
+
21
+ %entypo-social-github-character { content: ""; }
22
+ %entypo-social-c-github-character { content: ""; }
23
+ %entypo-social-flickr-character { content: ""; }
24
+ %entypo-social-c-flickr-character { content: ""; }
25
+ %entypo-social-vimeo-character { content: ""; }
26
+ %entypo-social-c-vimeo-character { content: ""; }
27
+ %entypo-social-twitter-character { content: ""; }
28
+ %entypo-social-c-twitter-character { content: ""; }
29
+ %entypo-social-facebook-character { content: ""; }
30
+ %entypo-social-c-facebook-character { content: ""; }
31
+ %entypo-social-s-facebook-character { content: ""; }
32
+ %entypo-social-google+-character { content: ""; }
33
+ %entypo-social-c-google+-character { content: ""; }
34
+ %entypo-social-pinterest-character { content: ""; }
35
+ %entypo-social-c-pinterest-character { content: ""; }
36
+ %entypo-social-tumblr-character { content: ""; }
37
+ %entypo-social-c-tumblr-character { content: ""; }
38
+ %entypo-social-linkedin-character { content: ""; }
39
+ %entypo-social-c-linkedin-character { content: ""; }
40
+ %entypo-social-dribbble-character { content: ""; }
41
+ %entypo-social-c-dribbble-character { content: ""; }
42
+ %entypo-social-stumbleupon-character { content: ""; }
43
+ %entypo-social-c-stumbleupon-character { content: ""; }
44
+ %entypo-social-lastfm-character { content: ""; }
45
+ %entypo-social-c-lastfm-character { content: ""; }
46
+ %entypo-social-rdio-character { content: ""; }
47
+ %entypo-social-c-rdio-character { content: ""; }
48
+ %entypo-social-spotify-character { content: ""; }
49
+ %entypo-social-c-spotify-character { content: ""; }
50
+ %entypo-social-qq-character { content: ""; }
51
+ %entypo-social-instagram-character { content: ""; }
52
+ %entypo-social-dropbox-character { content: ""; }
53
+ %entypo-social-evernote-character { content: ""; }
54
+ %entypo-social-flattr-character { content: ""; }
55
+ %entypo-social-skype-character { content: ""; }
56
+ %entypo-social-c-skype-character { content: ""; }
57
+ %entypo-social-renren-character { content: ""; }
58
+ %entypo-social-sina-weibo-character { content: ""; }
59
+ %entypo-social-paypal-character { content: ""; }
60
+ %entypo-social-picasa-character { content: ""; }
61
+ %entypo-social-soundcloud-character { content: ""; }
62
+ %entypo-social-mixi-character { content: ""; }
63
+ %entypo-social-behance-character { content: ""; }
64
+ %entypo-social-google-circles-character { content: ""; }
65
+ %entypo-social-vk-character { content: ""; }
66
+ %entypo-social-smashing-character { content: ""; }
@@ -1,7 +1,7 @@
1
1
  //
2
2
  // Entypo
3
3
  //
4
- // generated 05/07/13 12:56:45 PM
4
+ // generated 05/28/13 12:07:52 PM
5
5
 
6
6
  @import "compass/css3/font-face";
7
7
  @import "compass-icon-fonts";
@@ -10,246 +10,249 @@ $compass-icon-fonts-family: "Entypo";
10
10
 
11
11
  $compass-icon-fonts-class: "entypo";
12
12
 
13
- $compass-icon-fonts-files: font-files("entypo.eot", "entypo.woff", "entypo.ttf", "entypo.svg");
13
+ $compass-icon-fonts-eot: "entypo.eot";
14
+
15
+ $compass-icon-fonts-files: font-files("entypo.woff", "entypo.ttf", "entypo.svg");
14
16
 
15
17
  $compass-icon-fonts-size: 1.25em;
16
18
 
17
- $compass-icon-fonts-characters:
18
- "phone", "📞",
19
- "mobile", "📱",
20
- "mouse", "",
21
- "address", "",
22
- "mail", "✉",
23
- "paper-plane", "🔿",
24
- "pencil", "✎",
25
- "feather", "✒",
26
- "attach", "📎",
27
- "inbox", "",
28
- "reply", "",
29
- "reply-all", "",
30
- "forward", "➦",
31
- "user", "👤",
32
- "users", "👥",
33
- "add-user", "",
34
- "vcard", "",
35
- "export", "",
36
- "location", "",
37
- "map", "",
38
- "compass", "➢",
39
- "direction", "",
40
- "hair-cross", "🎯",
41
- "share", "",
42
- "shareable", "",
43
- "heart", "♥",
44
- "heart-empty", "",
45
- "star", "★",
46
- "star-empty", "",
47
- "thumbs-up", "👍",
48
- "thumbs-down", "👎",
49
- "chat", "",
50
- "comment", "",
51
- "quote", "❞",
52
- "home", "⌂",
53
- "popup", "",
54
- "search", "🔍",
55
- "flashlight", "🔦",
56
- "print", "",
57
- "bell", "🔔",
58
- "link", "🔗",
59
- "flag", "⚑",
60
- "cog", "⚙",
61
- "tools", "⚒",
62
- "trophy", "🏆",
63
- "tag", "",
64
- "camera", "📷",
65
- "megaphone", "📣",
66
- "moon", "☽",
67
- "palette", "🎨",
68
- "leaf", "🍂",
69
- "note", "♪",
70
- "beamed-note", "",
71
- "new", "💥",
72
- "graduation-cap", "🎓",
73
- "book", "📕",
74
- "newspaper", "📰",
75
- "bag", "👜",
76
- "airplane", "✈",
77
- "lifebuoy", "",
78
- "eye", "",
79
- "clock", "🕔",
80
- "mic", "🎤",
81
- "calendar", "📅",
82
- "flash", "⚡",
83
- "thunder-cloud", "",
84
- "droplet", "💧",
85
- "cd", "💿",
86
- "briefcase", "💼",
87
- "air", "💨",
88
- "hourglass", "⏳",
89
- "gauge", "🛇",
90
- "language", "🎔",
91
- "network", "",
92
- "key", "🔑",
93
- "battery", "🔋",
94
- "bucket", "📾",
95
- "magnet", "",
96
- "drive", "📽",
97
- "cup", "☕",
98
- "rocket", "🚀",
99
- "brush", "",
100
- "suitcase", "🛆",
101
- "traffic-cone", "🛈",
102
- "globe", "🌎",
103
- "keyboard", "⌨",
104
- "browser", "",
105
- "publish", "",
106
- "progress-3", "",
107
- "progress-2", "",
108
- "progress-1", "",
109
- "progress-0", "",
110
- "light-down", "🔅",
111
- "light-up", "🔆",
112
- "adjust", "◑",
113
- "code", "",
114
- "monitor", "💻",
115
- "infinity", "∞",
116
- "light-bulb", "💡",
117
- "credit-card", "💳",
118
- "database", "📸",
119
- "voicemail", "✇",
120
- "clipboard", "📋",
121
- "cart", "",
122
- "box", "📦",
123
- "ticket", "🎫",
124
- "rss", "",
125
- "signal", "📶",
126
- "thermometer", "📿",
127
- "water", "💦",
128
- "sweden", "",
129
- "line-graph", "📈",
130
- "pie-chart", "",
131
- "bar-graph", "📊",
132
- "area-graph", "🔾",
133
- "lock", "🔒",
134
- "lock-open", "🔓",
135
- "logout", "",
136
- "login", "",
137
- "check", "✓",
138
- "cross", "❌",
139
- "squared-minus", "",
140
- "squared-plus", "",
141
- "squared-cross", "",
142
- "circled-minus", "",
143
- "circled-plus", "",
144
- "circled-cross", "",
145
- "minus", "➖",
146
- "plus", "➕",
147
- "erase", "⌫",
148
- "block", "🚫",
149
- "info", "ℹ",
150
- "circled-info", "",
151
- "help", " ",
152
- "circled-help", "",
153
- "warning", "⚠",
154
- "cycle", "🔄",
155
- "cw", "⟳",
156
- "ccw", "⟲",
157
- "shuffle", "🔀",
158
- "back", "🔙",
159
- "level-down", "",
160
- "retweet", "",
161
- "loop", "🔁",
162
- "back-in-time", "",
163
- "level-up", "",
164
- "switch", "⇆",
165
- "numbered-list", "",
166
- "add-to-list", "",
167
- "layout", "⚏",
168
- "list", "☰",
169
- "text-doc", "📄",
170
- "text-doc-inverted", "",
171
- "doc", "",
172
- "docs", "",
173
- "landscape-doc", "",
174
- "picture", "🌄",
175
- "video", "🎬",
176
- "music", "🎵",
177
- "folder", "📁",
178
- "archive", "",
179
- "trash", "",
180
- "upload", "📤",
181
- "download", "📥",
182
- "save", "💾",
183
- "install", "",
184
- "cloud", "☁",
185
- "upload-cloud", "",
186
- "bookmark", "🔖",
187
- "bookmarks", "📑",
188
- "open-book", "📖",
189
- "play", "▶",
190
- "paus", "‖",
191
- "record", "●",
192
- "stop", "■",
193
- "ff", "⏩",
194
- "fb", "⏪",
195
- "to-start", "",
196
- "to-end", "",
197
- "resize-full", "",
198
- "resize-small", "",
199
- "volume", "⏷",
200
- "sound", "🔊",
201
- "mute", "🔇",
202
- "flow-cascade", "🕨",
203
- "flow-branch", "🕩",
204
- "flow-tree", "🕪",
205
- "flow-line", "🕫",
206
- "flow-parallel", "🕬",
207
- "left-bold", "",
208
- "down-bold", "",
209
- "up-bold", "",
210
- "right-bold", "",
211
- "left", "⬅",
212
- "down", "⬇",
213
- "up", "⬆",
214
- "right", "➡",
215
- "circled-left", "",
216
- "circled-down", "",
217
- "circled-up", "",
218
- "circled-right", "",
219
- "triangle-left", "",
220
- "triangle-down", "",
221
- "triangle-up", "",
222
- "triangle-right", "",
223
- "chevron-left", "",
224
- "chevron-down", "",
225
- "chevron-up", "",
226
- "chevron-right", "",
227
- "chevron-small-left", "",
228
- "chevron-small-down", "",
229
- "chevron-small-up", "",
230
- "chevron-small-right", "",
231
- "chevron-thin-left", "",
232
- "chevron-thin-down", "",
233
- "chevron-thin-up", "",
234
- "chevron-thin-right", "",
235
- "left-thin", "",
236
- "down-thin", "",
237
- "up-thin", "",
238
- "right-thin", "",
239
- "arrow-combo", "",
240
- "three-dots", "",
241
- "two-dots", "",
242
- "dot", "⏴",
243
- "cc", "🕅",
244
- "cc-by", "🕆",
245
- "cc-nc", "🕇",
246
- "cc-nc-eu", "🕈",
247
- "cc-nc-jp", "🕉",
248
- "cc-sa", "🕊",
249
- "cc-nd", "🕋",
250
- "cc-pd", "🕌",
251
- "cc-zero", "🕍",
252
- "cc-share", "🕎",
253
- "cc-remix", "🕏",
254
- "db-logo", "🗹",
255
- "db-shape", "🗺";
19
+ $compass-icon-fonts-keywords: "phone", "mobile", "mouse", "address", "mail", "paper-plane", "pencil", "feather", "attach", "inbox", "reply", "reply-all", "forward", "user", "users", "add-user", "vcard", "export", "location", "map", "compass", "direction", "hair-cross", "share", "shareable", "heart", "heart-empty", "star", "star-empty", "thumbs-up", "thumbs-down", "chat", "comment", "quote", "home", "popup", "search", "flashlight", "print", "bell", "link", "flag", "cog", "tools", "trophy", "tag", "camera", "megaphone", "moon", "palette", "leaf", "note", "beamed-note", "new", "graduation-cap", "book", "newspaper", "bag", "airplane", "lifebuoy", "eye", "clock", "mic", "calendar", "flash", "thunder-cloud", "droplet", "cd", "briefcase", "air", "hourglass", "gauge", "language", "network", "key", "battery", "bucket", "magnet", "drive", "cup", "rocket", "brush", "suitcase", "traffic-cone", "globe", "keyboard", "browser", "publish", "progress-3", "progress-2", "progress-1", "progress-0", "light-down", "light-up", "adjust", "code", "monitor", "infinity", "light-bulb", "credit-card", "database", "voicemail", "clipboard", "cart", "box", "ticket", "rss", "signal", "thermometer", "water", "sweden", "line-graph", "pie-chart", "bar-graph", "area-graph", "lock", "lock-open", "logout", "login", "check", "cross", "squared-minus", "squared-plus", "squared-cross", "circled-minus", "circled-plus", "circled-cross", "minus", "plus", "erase", "block", "info", "circled-info", "help", "circled-help", "warning", "cycle", "cw", "ccw", "shuffle", "back", "level-down", "retweet", "loop", "back-in-time", "level-up", "switch", "numbered-list", "add-to-list", "layout", "list", "text-doc", "text-doc-inverted", "doc", "docs", "landscape-doc", "picture", "video", "music", "folder", "archive", "trash", "upload", "download", "save", "install", "cloud", "upload-cloud", "bookmark", "bookmarks", "open-book", "play", "paus", "record", "stop", "ff", "fb", "to-start", "to-end", "resize-full", "resize-small", "volume", "sound", "mute", "flow-cascade", "flow-branch", "flow-tree", "flow-line", "flow-parallel", "left-bold", "down-bold", "up-bold", "right-bold", "left", "down", "up", "right", "circled-left", "circled-down", "circled-up", "circled-right", "triangle-left", "triangle-down", "triangle-up", "triangle-right", "chevron-left", "chevron-down", "chevron-up", "chevron-right", "chevron-small-left", "chevron-small-down", "chevron-small-up", "chevron-small-right", "chevron-thin-left", "chevron-thin-down", "chevron-thin-up", "chevron-thin-right", "left-thin", "down-thin", "up-thin", "right-thin", "arrow-combo", "three-dots", "two-dots", "dot", "cc", "cc-by", "cc-nc", "cc-nc-eu", "cc-nc-jp", "cc-sa", "cc-nd", "cc-pd", "cc-zero", "cc-share", "cc-remix", "db-logo", "db-shape";
20
+
21
+ %entypo-phone-character { content: "📞"; }
22
+ %entypo-mobile-character { content: "📱"; }
23
+ %entypo-mouse-character { content: ""; }
24
+ %entypo-address-character { content: ""; }
25
+ %entypo-mail-character { content: ""; }
26
+ %entypo-paper-plane-character { content: "🔿"; }
27
+ %entypo-pencil-character { content: ""; }
28
+ %entypo-feather-character { content: ""; }
29
+ %entypo-attach-character { content: "📎"; }
30
+ %entypo-inbox-character { content: ""; }
31
+ %entypo-reply-character { content: ""; }
32
+ %entypo-reply-all-character { content: ""; }
33
+ %entypo-forward-character { content: ""; }
34
+ %entypo-user-character { content: "👤"; }
35
+ %entypo-users-character { content: "👥"; }
36
+ %entypo-add-user-character { content: ""; }
37
+ %entypo-vcard-character { content: ""; }
38
+ %entypo-export-character { content: ""; }
39
+ %entypo-location-character { content: ""; }
40
+ %entypo-map-character { content: ""; }
41
+ %entypo-compass-character { content: ""; }
42
+ %entypo-direction-character { content: ""; }
43
+ %entypo-hair-cross-character { content: "🎯"; }
44
+ %entypo-share-character { content: ""; }
45
+ %entypo-shareable-character { content: ""; }
46
+ %entypo-heart-character { content: ""; }
47
+ %entypo-heart-empty-character { content: ""; }
48
+ %entypo-star-character { content: ""; }
49
+ %entypo-star-empty-character { content: ""; }
50
+ %entypo-thumbs-up-character { content: "👍"; }
51
+ %entypo-thumbs-down-character { content: "👎"; }
52
+ %entypo-chat-character { content: ""; }
53
+ %entypo-comment-character { content: ""; }
54
+ %entypo-quote-character { content: ""; }
55
+ %entypo-home-character { content: ""; }
56
+ %entypo-popup-character { content: ""; }
57
+ %entypo-search-character { content: "🔍"; }
58
+ %entypo-flashlight-character { content: "🔦"; }
59
+ %entypo-print-character { content: ""; }
60
+ %entypo-bell-character { content: "🔔"; }
61
+ %entypo-link-character { content: "🔗"; }
62
+ %entypo-flag-character { content: ""; }
63
+ %entypo-cog-character { content: ""; }
64
+ %entypo-tools-character { content: ""; }
65
+ %entypo-trophy-character { content: "🏆"; }
66
+ %entypo-tag-character { content: ""; }
67
+ %entypo-camera-character { content: "📷"; }
68
+ %entypo-megaphone-character { content: "📣"; }
69
+ %entypo-moon-character { content: ""; }
70
+ %entypo-palette-character { content: "🎨"; }
71
+ %entypo-leaf-character { content: "🍂"; }
72
+ %entypo-note-character { content: ""; }
73
+ %entypo-beamed-note-character { content: ""; }
74
+ %entypo-new-character { content: "💥"; }
75
+ %entypo-graduation-cap-character { content: "🎓"; }
76
+ %entypo-book-character { content: "📕"; }
77
+ %entypo-newspaper-character { content: "📰"; }
78
+ %entypo-bag-character { content: "👜"; }
79
+ %entypo-airplane-character { content: ""; }
80
+ %entypo-lifebuoy-character { content: ""; }
81
+ %entypo-eye-character { content: ""; }
82
+ %entypo-clock-character { content: "🕔"; }
83
+ %entypo-mic-character { content: "🎤"; }
84
+ %entypo-calendar-character { content: "📅"; }
85
+ %entypo-flash-character { content: ""; }
86
+ %entypo-thunder-cloud-character { content: ""; }
87
+ %entypo-droplet-character { content: "💧"; }
88
+ %entypo-cd-character { content: "💿"; }
89
+ %entypo-briefcase-character { content: "💼"; }
90
+ %entypo-air-character { content: "💨"; }
91
+ %entypo-hourglass-character { content: ""; }
92
+ %entypo-gauge-character { content: "🛇"; }
93
+ %entypo-language-character { content: "🎔"; }
94
+ %entypo-network-character { content: ""; }
95
+ %entypo-key-character { content: "🔑"; }
96
+ %entypo-battery-character { content: "🔋"; }
97
+ %entypo-bucket-character { content: "📾"; }
98
+ %entypo-magnet-character { content: ""; }
99
+ %entypo-drive-character { content: "📽"; }
100
+ %entypo-cup-character { content: ""; }
101
+ %entypo-rocket-character { content: "🚀"; }
102
+ %entypo-brush-character { content: ""; }
103
+ %entypo-suitcase-character { content: "🛆"; }
104
+ %entypo-traffic-cone-character { content: "🛈"; }
105
+ %entypo-globe-character { content: "🌎"; }
106
+ %entypo-keyboard-character { content: ""; }
107
+ %entypo-browser-character { content: ""; }
108
+ %entypo-publish-character { content: ""; }
109
+ %entypo-progress-3-character { content: ""; }
110
+ %entypo-progress-2-character { content: ""; }
111
+ %entypo-progress-1-character { content: ""; }
112
+ %entypo-progress-0-character { content: ""; }
113
+ %entypo-light-down-character { content: "🔅"; }
114
+ %entypo-light-up-character { content: "🔆"; }
115
+ %entypo-adjust-character { content: ""; }
116
+ %entypo-code-character { content: ""; }
117
+ %entypo-monitor-character { content: "💻"; }
118
+ %entypo-infinity-character { content: ""; }
119
+ %entypo-light-bulb-character { content: "💡"; }
120
+ %entypo-credit-card-character { content: "💳"; }
121
+ %entypo-database-character { content: "📸"; }
122
+ %entypo-voicemail-character { content: ""; }
123
+ %entypo-clipboard-character { content: "📋"; }
124
+ %entypo-cart-character { content: ""; }
125
+ %entypo-box-character { content: "📦"; }
126
+ %entypo-ticket-character { content: "🎫"; }
127
+ %entypo-rss-character { content: ""; }
128
+ %entypo-signal-character { content: "📶"; }
129
+ %entypo-thermometer-character { content: "📿"; }
130
+ %entypo-water-character { content: "💦"; }
131
+ %entypo-sweden-character { content: ""; }
132
+ %entypo-line-graph-character { content: "📈"; }
133
+ %entypo-pie-chart-character { content: ""; }
134
+ %entypo-bar-graph-character { content: "📊"; }
135
+ %entypo-area-graph-character { content: "🔾"; }
136
+ %entypo-lock-character { content: "🔒"; }
137
+ %entypo-lock-open-character { content: "🔓"; }
138
+ %entypo-logout-character { content: ""; }
139
+ %entypo-login-character { content: ""; }
140
+ %entypo-check-character { content: ""; }
141
+ %entypo-cross-character { content: ""; }
142
+ %entypo-squared-minus-character { content: ""; }
143
+ %entypo-squared-plus-character { content: ""; }
144
+ %entypo-squared-cross-character { content: ""; }
145
+ %entypo-circled-minus-character { content: ""; }
146
+ %entypo-circled-plus-character { content: ""; }
147
+ %entypo-circled-cross-character { content: ""; }
148
+ %entypo-minus-character { content: ""; }
149
+ %entypo-plus-character { content: ""; }
150
+ %entypo-erase-character { content: ""; }
151
+ %entypo-block-character { content: "🚫"; }
152
+ %entypo-info-character { content: ""; }
153
+ %entypo-circled-info-character { content: ""; }
154
+ %entypo-help-character { content: " "; }
155
+ %entypo-circled-help-character { content: ""; }
156
+ %entypo-warning-character { content: ""; }
157
+ %entypo-cycle-character { content: "🔄"; }
158
+ %entypo-cw-character { content: ""; }
159
+ %entypo-ccw-character { content: ""; }
160
+ %entypo-shuffle-character { content: "🔀"; }
161
+ %entypo-back-character { content: "🔙"; }
162
+ %entypo-level-down-character { content: ""; }
163
+ %entypo-retweet-character { content: ""; }
164
+ %entypo-loop-character { content: "🔁"; }
165
+ %entypo-back-in-time-character { content: ""; }
166
+ %entypo-level-up-character { content: ""; }
167
+ %entypo-switch-character { content: ""; }
168
+ %entypo-numbered-list-character { content: ""; }
169
+ %entypo-add-to-list-character { content: ""; }
170
+ %entypo-layout-character { content: ""; }
171
+ %entypo-list-character { content: ""; }
172
+ %entypo-text-doc-character { content: "📄"; }
173
+ %entypo-text-doc-inverted-character { content: ""; }
174
+ %entypo-doc-character { content: ""; }
175
+ %entypo-docs-character { content: ""; }
176
+ %entypo-landscape-doc-character { content: ""; }
177
+ %entypo-picture-character { content: "🌄"; }
178
+ %entypo-video-character { content: "🎬"; }
179
+ %entypo-music-character { content: "🎵"; }
180
+ %entypo-folder-character { content: "📁"; }
181
+ %entypo-archive-character { content: ""; }
182
+ %entypo-trash-character { content: ""; }
183
+ %entypo-upload-character { content: "📤"; }
184
+ %entypo-download-character { content: "📥"; }
185
+ %entypo-save-character { content: "💾"; }
186
+ %entypo-install-character { content: ""; }
187
+ %entypo-cloud-character { content: ""; }
188
+ %entypo-upload-cloud-character { content: ""; }
189
+ %entypo-bookmark-character { content: "🔖"; }
190
+ %entypo-bookmarks-character { content: "📑"; }
191
+ %entypo-open-book-character { content: "📖"; }
192
+ %entypo-play-character { content: ""; }
193
+ %entypo-paus-character { content: ""; }
194
+ %entypo-record-character { content: ""; }
195
+ %entypo-stop-character { content: ""; }
196
+ %entypo-ff-character { content: ""; }
197
+ %entypo-fb-character { content: ""; }
198
+ %entypo-to-start-character { content: ""; }
199
+ %entypo-to-end-character { content: ""; }
200
+ %entypo-resize-full-character { content: ""; }
201
+ %entypo-resize-small-character { content: ""; }
202
+ %entypo-volume-character { content: ""; }
203
+ %entypo-sound-character { content: "🔊"; }
204
+ %entypo-mute-character { content: "🔇"; }
205
+ %entypo-flow-cascade-character { content: "🕨"; }
206
+ %entypo-flow-branch-character { content: "🕩"; }
207
+ %entypo-flow-tree-character { content: "🕪"; }
208
+ %entypo-flow-line-character { content: "🕫"; }
209
+ %entypo-flow-parallel-character { content: "🕬"; }
210
+ %entypo-left-bold-character { content: ""; }
211
+ %entypo-down-bold-character { content: ""; }
212
+ %entypo-up-bold-character { content: ""; }
213
+ %entypo-right-bold-character { content: ""; }
214
+ %entypo-left-character { content: ""; }
215
+ %entypo-down-character { content: ""; }
216
+ %entypo-up-character { content: ""; }
217
+ %entypo-right-character { content: ""; }
218
+ %entypo-circled-left-character { content: ""; }
219
+ %entypo-circled-down-character { content: ""; }
220
+ %entypo-circled-up-character { content: ""; }
221
+ %entypo-circled-right-character { content: ""; }
222
+ %entypo-triangle-left-character { content: ""; }
223
+ %entypo-triangle-down-character { content: ""; }
224
+ %entypo-triangle-up-character { content: ""; }
225
+ %entypo-triangle-right-character { content: ""; }
226
+ %entypo-chevron-left-character { content: ""; }
227
+ %entypo-chevron-down-character { content: ""; }
228
+ %entypo-chevron-up-character { content: ""; }
229
+ %entypo-chevron-right-character { content: ""; }
230
+ %entypo-chevron-small-left-character { content: ""; }
231
+ %entypo-chevron-small-down-character { content: ""; }
232
+ %entypo-chevron-small-up-character { content: ""; }
233
+ %entypo-chevron-small-right-character { content: ""; }
234
+ %entypo-chevron-thin-left-character { content: ""; }
235
+ %entypo-chevron-thin-down-character { content: ""; }
236
+ %entypo-chevron-thin-up-character { content: ""; }
237
+ %entypo-chevron-thin-right-character { content: ""; }
238
+ %entypo-left-thin-character { content: ""; }
239
+ %entypo-down-thin-character { content: ""; }
240
+ %entypo-up-thin-character { content: ""; }
241
+ %entypo-right-thin-character { content: ""; }
242
+ %entypo-arrow-combo-character { content: ""; }
243
+ %entypo-three-dots-character { content: ""; }
244
+ %entypo-two-dots-character { content: ""; }
245
+ %entypo-dot-character { content: ""; }
246
+ %entypo-cc-character { content: "🕅"; }
247
+ %entypo-cc-by-character { content: "🕆"; }
248
+ %entypo-cc-nc-character { content: "🕇"; }
249
+ %entypo-cc-nc-eu-character { content: "🕈"; }
250
+ %entypo-cc-nc-jp-character { content: "🕉"; }
251
+ %entypo-cc-sa-character { content: "🕊"; }
252
+ %entypo-cc-nd-character { content: "🕋"; }
253
+ %entypo-cc-pd-character { content: "🕌"; }
254
+ %entypo-cc-zero-character { content: "🕍"; }
255
+ %entypo-cc-share-character { content: "🕎"; }
256
+ %entypo-cc-remix-character { content: "🕏"; }
257
+ %entypo-db-logo-character { content: "🗹"; }
258
+ %entypo-db-shape-character { content: "🗺"; }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass_icon_fonts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hellein
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-07 00:00:00.000000000 Z
11
+ date: 2013-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake