entypo-rails 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +20 -0
- data/Gemfile +4 -0
- data/LICENSE +24 -0
- data/README.md +60 -0
- data/Rakefile +2 -0
- data/entypo-rails.gemspec +21 -0
- data/lib/assets/stylesheets/entypo-fonts.css.erb +21 -0
- data/lib/assets/stylesheets/entypo.css.scss +303 -0
- data/lib/entypo-rails.rb +9 -0
- data/lib/entypo-rails/version.rb +8 -0
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/fonts/entypo-social.eot +0 -0
- data/vendor/assets/fonts/entypo-social.svg +13 -0
- data/vendor/assets/fonts/entypo-social.ttf +0 -0
- data/vendor/assets/fonts/entypo-social.woff +0 -0
- data/vendor/assets/fonts/entypo.eot +0 -0
- data/vendor/assets/fonts/entypo.svg +13 -0
- data/vendor/assets/fonts/entypo.ttf +0 -0
- data/vendor/assets/fonts/entypo.woff +0 -0
- metadata +102 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
Copyright (c) 2012 by Lukas Westermann
|
2
|
+
|
3
|
+
This license ONLY applies to files NOT IN the vendor/ directory.
|
4
|
+
|
5
|
+
MIT License
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
a copy of this software and associated documentation files (the
|
9
|
+
"Software"), to deal in the Software without restriction, including
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be
|
16
|
+
included in all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
22
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
24
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# entypo-rails
|
2
|
+
|
3
|
+
An asset pipeline plugin for Rails to easily add the [Entypo](http://www.entypo.com/)
|
4
|
+
icon font faces and an initial set of icon classes.
|
5
|
+
|
6
|
+
## Entypo
|
7
|
+
|
8
|
+
The [Entypo](http://www.entypo.com/) pictograms by Daniel Bruce http://www.entypo.com/
|
9
|
+
are provided in `vendor`. These pictograms are licensed under
|
10
|
+
[CC BY 3.0](http://creativecommons.org/licenses/by-sa/3.0/) and the font unter
|
11
|
+
[SIL Open Font License](http://scripts.sil.org/OFL).
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
Add this line to your application's Gemfile:
|
16
|
+
|
17
|
+
gem 'entypo-rails'
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Either use the provided mappings, based on `icons-...` and the `:before`:
|
26
|
+
|
27
|
+
```scss
|
28
|
+
// application.css[.scss]
|
29
|
+
//= require entypo
|
30
|
+
```
|
31
|
+
|
32
|
+
```html
|
33
|
+
<!-- some_template.html... -->
|
34
|
+
This is cool <i class="icon-thumbs-up"></i>.
|
35
|
+
```
|
36
|
+
|
37
|
+
or just include the entypo and entypo-social font faces and do the font face
|
38
|
+
mappings yourself, see http://www.entypo.com/characters/ for possible characters:
|
39
|
+
|
40
|
+
```scss
|
41
|
+
// application.css[.scss]
|
42
|
+
//= require entypo-fonts
|
43
|
+
|
44
|
+
// icons.css.scss (or wherever)
|
45
|
+
i.cool { font-family: 'entypo' }
|
46
|
+
i.cool:before { content: "\1F44D"; }
|
47
|
+
```
|
48
|
+
|
49
|
+
```html
|
50
|
+
<!-- some_template.html... -->
|
51
|
+
This is cool <i class="cool"></i>.
|
52
|
+
```
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
1. Fork it
|
57
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
58
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
59
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
60
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/entypo-rails/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Lukas Westermann", "Marco Pluess"]
|
6
|
+
gem.email = ["lukas@at-point.ch", "marco@at-point.ch"]
|
7
|
+
gem.description = %q{Rails asset pipeline plugin and CSS mappings for the Entypo pictograms by Daniel Bruce http://www.entypo.com}
|
8
|
+
gem.summary = %q{Rails asset pipeline plugin to provide Entypo icons.}
|
9
|
+
gem.homepage = ""
|
10
|
+
|
11
|
+
gem.licenses = ['MIT', 'CC BY 3.0', 'SIL Open Font License']
|
12
|
+
|
13
|
+
gem.files = `git ls-files`.split($\)
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
gem.name = "entypo-rails"
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
gem.version = Entypo::VERSION
|
19
|
+
|
20
|
+
gem.add_dependency "railties", "~> 3.1"
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
@font-face {
|
4
|
+
font-family: 'entypo';
|
5
|
+
src: url(<%= asset_path 'entypo.eot' %>);
|
6
|
+
src: url(<%= asset_path 'entypo.eot' %>?#iefix) format('embedded-opentype'),
|
7
|
+
url(<%= asset_path 'entypo.woff' %>) format('woff'),
|
8
|
+
url(<%= asset_path 'entypo.ttf' %>) format('truetype'),
|
9
|
+
url(<%= asset_path 'entypo.svg' %>#entypo) format('svg');
|
10
|
+
font-weight: normal; font-style: normal;
|
11
|
+
}
|
12
|
+
|
13
|
+
@font-face {
|
14
|
+
font-family: 'entypo-social';
|
15
|
+
src: url(<%= asset_path 'entypo-social.eot' %>);
|
16
|
+
src: url(<%= asset_path 'entypo-social.eot' %>?#iefix) format('embedded-opentype'),
|
17
|
+
url(<%= asset_path 'entypo-social.woff' %>) format('woff'),
|
18
|
+
url(<%= asset_path 'entypo-social.ttf' %>) format('truetype'),
|
19
|
+
url(<%= asset_path 'entypo-social.svg' %>#entypo) format('svg');
|
20
|
+
font-weight: normal; font-style: normal;
|
21
|
+
}
|
@@ -0,0 +1,303 @@
|
|
1
|
+
@import "entypo-fonts";
|
2
|
+
@charset "UTF-8";
|
3
|
+
|
4
|
+
[class^="icon-"], [class*=" icon-"] {
|
5
|
+
font-family: entypo;
|
6
|
+
font-style: normal;
|
7
|
+
display: inline-block;
|
8
|
+
width: 1.1em;
|
9
|
+
margin-right: .1em;
|
10
|
+
text-align: center;
|
11
|
+
}
|
12
|
+
|
13
|
+
[class^="icon-social-"], [class*=" icon-social-"] {
|
14
|
+
font-family: entypo-social;
|
15
|
+
}
|
16
|
+
|
17
|
+
/* main icon map */
|
18
|
+
.icon-phone:before { content: "📞"; } /* U+1F4DE - 📞 */
|
19
|
+
.icon-mobile:before { content: "📱"; } /* U+1F4F1 - 📱 */
|
20
|
+
.icon-mouse:before { content: ""; } /* U+E789 -  */
|
21
|
+
.icon-address:before { content: ""; } /* U+E723 -  */
|
22
|
+
.icon-mail:before { content: "✉"; } /* U+2709 - ✉ */
|
23
|
+
.icon-paper-plane:before { content: "🔿"; } /* U+1F53F - 🔿 */
|
24
|
+
.icon-pencil:before { content: "✎"; } /* U+270E - ✎ */
|
25
|
+
.icon-feather:before { content: "✒"; } /* U+2712 - ✒ */
|
26
|
+
.icon-attach:before { content: "📎"; } /* U+1F4CE - 📎 */
|
27
|
+
.icon-inbox:before { content: ""; } /* U+E777 -  */
|
28
|
+
.icon-reply:before { content: ""; } /* U+E712 -  */
|
29
|
+
.icon-reply-all:before { content: ""; } /* U+E713 -  */
|
30
|
+
.icon-forward:before { content: "➦"; } /* U+27A6 - ➦ */
|
31
|
+
.icon-user:before { content: "👤"; } /* U+1F464 - 👤 */
|
32
|
+
.icon-users:before { content: "👥"; } /* U+1F465 - 👥 */
|
33
|
+
.icon-add-user:before { content: ""; } /* U+E700 -  */
|
34
|
+
.icon-vcard:before { content: ""; } /* U+E722 -  */
|
35
|
+
.icon-export:before { content: ""; } /* U+E715 -  */
|
36
|
+
.icon-location:before { content: ""; } /* U+E724 -  */
|
37
|
+
.icon-map:before { content: ""; } /* U+E727 -  */
|
38
|
+
.icon-compass:before { content: ""; } /* U+E728 -  */
|
39
|
+
.icon-direction:before { content: "➢"; } /* U+27A2 - ➢ */
|
40
|
+
.icon-hair-cross:before { content: "🎯"; } /* U+1F3AF - 🎯 */
|
41
|
+
.icon-share:before { content: ""; } /* U+E73C -  */
|
42
|
+
.icon-shareable:before { content: ""; } /* U+E73E -  */
|
43
|
+
.icon-heart:before { content: "♥"; } /* U+2665 - &hearts; */
|
44
|
+
.icon-heart-empty:before { content: "♡"; } /* U+2661 - ♡ */
|
45
|
+
.icon-star:before { content: "★"; } /* U+2605 - ★ */
|
46
|
+
.icon-star-empty:before { content: "☆"; } /* U+2606 - ☆ */
|
47
|
+
.icon-thumbs-up:before { content: "👍"; } /* U+1F44D - 👍 */
|
48
|
+
.icon-thumbs-down:before { content: "👎"; } /* U+1F44E - 👎 */
|
49
|
+
.icon-chat:before { content: ""; } /* U+E720 -  */
|
50
|
+
.icon-comment:before { content: ""; } /* U+E718 -  */
|
51
|
+
.icon-quote:before { content: "❞"; } /* U+275E - ❞ */
|
52
|
+
.icon-home:before { content: "⌂"; } /* U+2302 - ⌂ */
|
53
|
+
.icon-popup:before { content: ""; } /* U+E74C -  */
|
54
|
+
.icon-search:before { content: "🔍"; } /* U+1F50D - 🔍 */
|
55
|
+
.icon-flashlight:before { content: "🔦"; } /* U+1F526 - 🔦 */
|
56
|
+
.icon-print:before { content: ""; } /* U+E716 -  */
|
57
|
+
.icon-bell:before { content: "🔔"; } /* U+1F514 - 🔔 */
|
58
|
+
.icon-link:before { content: "🔗"; } /* U+1F517 - 🔗 */
|
59
|
+
.icon-flag:before { content: "⚑"; } /* U+2691 - ⚑ */
|
60
|
+
.icon-cog:before { content: "⚙"; } /* U+2699 - ⚙ */
|
61
|
+
.icon-tools:before { content: "⚒"; } /* U+2692 - ⚒ */
|
62
|
+
.icon-trophy:before { content: "🏆"; } /* U+1F3C6 - 🏆 */
|
63
|
+
.icon-tag:before { content: ""; } /* U+E70C -  */
|
64
|
+
.icon-camera:before { content: "📷"; } /* U+1F4F7 - 📷 */
|
65
|
+
.icon-megaphone:before { content: "📣"; } /* U+1F4E3 - 📣 */
|
66
|
+
.icon-moon:before { content: "☽"; } /* U+263D - ☽ */
|
67
|
+
.icon-palette:before { content: "🎨"; } /* U+1F3A8 - 🎨 */
|
68
|
+
.icon-leaf:before { content: "🍂"; } /* U+1F342 - 🍂 */
|
69
|
+
.icon-note:before { content: "♪"; } /* U+266A - ♪ */
|
70
|
+
.icon-beamed-note:before { content: "♫"; } /* U+266B - ♫ */
|
71
|
+
.icon-new:before { content: "💥"; } /* U+1F4A5 - 💥 */
|
72
|
+
.icon-graduation-cap:before { content: "🎓"; } /* U+1F393 - 🎓 */
|
73
|
+
.icon-book:before { content: "📕"; } /* U+1F4D5 - 📕 */
|
74
|
+
.icon-newspaper:before { content: "📰"; } /* U+1F4F0 - 📰 */
|
75
|
+
.icon-bag:before { content: "👜"; } /* U+1F45C - 👜 */
|
76
|
+
.icon-airplane:before { content: "✈"; } /* U+2708 - ✈ */
|
77
|
+
.icon-lifebuoy:before { content: ""; } /* U+E788 -  */
|
78
|
+
.icon-eye:before { content: ""; } /* U+E70A -  */
|
79
|
+
.icon-clock:before { content: " 🕔 "; } /* U+1F554 - 🕔 */
|
80
|
+
.icon-mic:before { content: "🎤"; } /* U+1F3A4 - 🎤 */
|
81
|
+
.icon-calendar:before { content: "📅"; } /* U+1F4C5 - 📅 */
|
82
|
+
.icon-flash:before { content: "⚡"; } /* U+26A1 - ⚡ */
|
83
|
+
.icon-thunder-cloud:before { content: "⛈"; } /* U+26C8 - ⛈ */
|
84
|
+
.icon-droplet:before { content: "💧"; } /* U+1F4A7 - 💧 */
|
85
|
+
.icon-cd:before { content: "💿"; } /* U+1F4BF - 💿 */
|
86
|
+
.icon-briefcase:before { content: "💼"; } /* U+1F4BC - 💼 */
|
87
|
+
.icon-air:before { content: "💨"; } /* U+1F4A8 - 💨 */
|
88
|
+
.icon-hourglass:before { content: "⏳"; } /* U+23F3 - ⏳ */
|
89
|
+
.icon-gauge:before { content: "🛇"; } /* U+1F6C7 - 🛇 */
|
90
|
+
.icon-language:before { content: "🎔"; } /* U+1F394 - 🎔 */
|
91
|
+
.icon-network:before { content: ""; } /* U+E776 -  */
|
92
|
+
.icon-key:before { content: "🔑"; } /* U+1F511 - 🔑 */
|
93
|
+
.icon-battery:before { content: "🔋"; } /* U+1F50B - 🔋 */
|
94
|
+
.icon-bucket:before { content: "📾"; } /* U+1F4FE - 📾 */
|
95
|
+
.icon-magnet:before { content: ""; } /* U+E7A1 -  */
|
96
|
+
.icon-drive:before { content: "📽"; } /* U+1F4FD - 📽 */
|
97
|
+
.icon-cup:before { content: "☕"; } /* U+2615 - ☕ */
|
98
|
+
.icon-rocket:before { content: "🚀"; } /* U+1F680 - 🚀 */
|
99
|
+
.icon-brush:before { content: ""; } /* U+E79A -  */
|
100
|
+
.icon-suitcase:before { content: "🛆"; } /* U+1F6C6 - 🛆 */
|
101
|
+
.icon-traffic-cone:before { content: "🛈"; } /* U+1F6C8 - 🛈 */
|
102
|
+
.icon-globe:before { content: "🌎"; } /* U+1F30E - 🌎 */
|
103
|
+
.icon-keyboard:before { content: "⌨"; } /* U+2328 - ⌨ */
|
104
|
+
.icon-browser:before { content: ""; } /* U+E74E -  */
|
105
|
+
.icon-publish:before { content: ""; } /* U+E74D -  */
|
106
|
+
.icon-progress-3:before { content: ""; } /* U+E76B -  */
|
107
|
+
.icon-progress-2:before { content: ""; } /* U+E76A -  */
|
108
|
+
.icon-progress-1:before { content: ""; } /* U+E769 -  */
|
109
|
+
.icon-progress-0:before { content: ""; } /* U+E768 -  */
|
110
|
+
.icon-light-down:before { content: "🔅"; } /* U+1F505 - 🔅 */
|
111
|
+
.icon-light-up:before { content: "🔆"; } /* U+1F506 - 🔆 */
|
112
|
+
.icon-adjust:before { content: "◑"; } /* U+25D1 - ◑ */
|
113
|
+
.icon-code:before { content: ""; } /* U+E714 -  */
|
114
|
+
.icon-monitor:before { content: "💻"; } /* U+1F4BB - 💻 */
|
115
|
+
.icon-infinity:before { content: "∞"; } /* U+221E - &infin; */
|
116
|
+
.icon-light-bulb:before { content: "💡"; } /* U+1F4A1 - 💡 */
|
117
|
+
.icon-credit-card:before { content: "💳"; } /* U+1F4B3 - 💳 */
|
118
|
+
.icon-database:before { content: "📸"; } /* U+1F4F8 - 📸 */
|
119
|
+
.icon-voicemail:before { content: "✇"; } /* U+2707 - ✇ */
|
120
|
+
.icon-clipboard:before { content: "📋"; } /* U+1F4CB - 📋 */
|
121
|
+
.icon-cart:before { content: ""; } /* U+E73D -  */
|
122
|
+
.icon-box:before { content: "📦"; } /* U+1F4E6 - 📦 */
|
123
|
+
.icon-ticket:before { content: "🎫"; } /* U+1F3AB - 🎫 */
|
124
|
+
.icon-rss:before { content: ""; } /* U+E73A -  */
|
125
|
+
.icon-signal:before { content: "📶"; } /* U+1F4F6 - 📶 */
|
126
|
+
.icon-thermometer:before { content: "📿"; } /* U+1F4FF - 📿 */
|
127
|
+
.icon-water:before { content: "💦"; } /* U+1F4A6 - 💦 */
|
128
|
+
.icon-sweden:before { content: ""; } /* U+F601 -  */
|
129
|
+
.icon-line-graph:before { content: "📈"; } /* U+1F4C8 - 📈 */
|
130
|
+
.icon-pie-chart:before { content: "◴"; } /* U+25F4 - ◴ */
|
131
|
+
.icon-bar-graph:before { content: "📊"; } /* U+1F4CA - 📊 */
|
132
|
+
.icon-area-graph:before { content: "🔾"; } /* U+1F53E - 🔾 */
|
133
|
+
.icon-lock:before { content: "🔒"; } /* U+1F512 - 🔒 */
|
134
|
+
.icon-lock-open:before { content: "🔓"; } /* U+1F513 - 🔓 */
|
135
|
+
.icon-logout:before { content: ""; } /* U+E741 -  */
|
136
|
+
.icon-login:before { content: ""; } /* U+E740 -  */
|
137
|
+
.icon-check:before { content: "✓"; } /* U+2713 - ✓ */
|
138
|
+
.icon-cross:before { content: "❌"; } /* U+274C - ❌ */
|
139
|
+
.icon-squared-minus:before { content: "⊟"; } /* U+229F - ⊟ */
|
140
|
+
.icon-squared-plus:before { content: "⊞"; } /* U+229E - ⊞ */
|
141
|
+
.icon-squared-cross:before { content: "❎"; } /* U+274E - ❎ */
|
142
|
+
.icon-circled-minus:before { content: "⊖"; } /* U+2296 - ⊖ */
|
143
|
+
.icon-circled-plus:before { content: "⊕"; } /* U+2295 - &oplus; */
|
144
|
+
.icon-circled-cross:before { content: "✖"; } /* U+2716 - ✖ */
|
145
|
+
.icon-minus:before { content: "➖"; } /* U+2796 - ➖ */
|
146
|
+
.icon-plus:before { content: "➕"; } /* U+2795 - ➕ */
|
147
|
+
.icon-erase:before { content: "⌫"; } /* U+232B - ⌫ */
|
148
|
+
.icon-block:before { content: "🚫"; } /* U+1F6AB - 🚫 */
|
149
|
+
.icon-info:before { content: "ℹ"; } /* U+2139 - ℹ */
|
150
|
+
.icon-circled-info:before { content: ""; } /* U+E705 -  */
|
151
|
+
.icon-help:before { content: "❓"; } /* U+2753 - ❓ */
|
152
|
+
.icon-circled-help:before { content: ""; } /* U+E704 -  */
|
153
|
+
.icon-warning:before { content: "⚠"; } /* U+26A0 - ⚠ */
|
154
|
+
.icon-cycle:before { content: "🔄"; } /* U+1F504 - 🔄 */
|
155
|
+
.icon-cw:before { content: "⟳"; } /* U+27F3 - ⟳ */
|
156
|
+
.icon-ccw:before { content: "⟲"; } /* U+27F2 - ⟲ */
|
157
|
+
.icon-shuffle:before { content: "🔀"; } /* U+1F500 - 🔀 */
|
158
|
+
.icon-back:before { content: "🔙"; } /* U+1F519 - 🔙 */
|
159
|
+
.icon-level-down:before { content: "↳"; } /* U+21B3 - ↳ */
|
160
|
+
.icon-retweet:before { content: ""; } /* U+E717 -  */
|
161
|
+
.icon-loop:before { content: "🔁"; } /* U+1F501 - 🔁 */
|
162
|
+
.icon-back-in-time:before { content: ""; } /* U+E771 -  */
|
163
|
+
.icon-level-up:before { content: "↰"; } /* U+21B0 - ↰ */
|
164
|
+
.icon-switch:before { content: "⇆"; } /* U+21C6 - ⇆ */
|
165
|
+
.icon-numbered-list:before { content: ""; } /* U+E005 -  */
|
166
|
+
.icon-add-to-list:before { content: ""; } /* U+E003 -  */
|
167
|
+
.icon-layout:before { content: "⚏"; } /* U+268F - ⚏ */
|
168
|
+
.icon-list:before { content: "☰"; } /* U+2630 - ☰ */
|
169
|
+
.icon-text-doc:before { content: "📄"; } /* U+1F4C4 - 📄 */
|
170
|
+
.icon-text-doc-inverted:before { content: ""; } /* U+E731 -  */
|
171
|
+
.icon-doc:before { content: ""; } /* U+E730 -  */
|
172
|
+
.icon-docs:before { content: ""; } /* U+E736 -  */
|
173
|
+
.icon-landscape-doc:before { content: ""; } /* U+E737 -  */
|
174
|
+
.icon-picture:before { content: "🌄"; } /* U+1F304 - 🌄 */
|
175
|
+
.icon-video:before { content: "🎬"; } /* U+1F3AC - 🎬 */
|
176
|
+
.icon-music:before { content: "🎵"; } /* U+1F3B5 - 🎵 */
|
177
|
+
.icon-folder:before { content: "📁"; } /* U+1F4C1 - 📁 */
|
178
|
+
.icon-archive:before { content: " "; } /* U+E800 -  */
|
179
|
+
.icon-trash:before { content: ""; } /* U+E729 -  */
|
180
|
+
.icon-upload:before { content: "📤"; } /* U+1F4E4 - 📤 */
|
181
|
+
.icon-download:before { content: "📥"; } /* U+1F4E5 - 📥 */
|
182
|
+
.icon-save:before { content: "💾"; } /* U+1F4BE - 💾 */
|
183
|
+
.icon-install:before { content: ""; } /* U+E778 -  */
|
184
|
+
.icon-cloud:before { content: "☁"; } /* U+2601 - ☁ */
|
185
|
+
.icon-upload-cloud:before { content: ""; } /* U+E711 -  */
|
186
|
+
.icon-bookmark:before { content: "🔖"; } /* U+1F516 - 🔖 */
|
187
|
+
.icon-bookmarks:before { content: "📑"; } /* U+1F4D1 - 📑 */
|
188
|
+
.icon-open-book:before { content: "📖"; } /* U+1F4D6 - 📖 */
|
189
|
+
.icon-play:before { content: "▶"; } /* U+25B6 - ▶ */
|
190
|
+
.icon-paus:before { content: "‖"; } /* U+2016 - ‖ */
|
191
|
+
.icon-record:before { content: "●"; } /* U+25CF - ● */
|
192
|
+
.icon-stop:before { content: "■"; } /* U+25A0 - ■ */
|
193
|
+
.icon-ff:before { content: "⏩"; } /* U+23E9 - ⏩ */
|
194
|
+
.icon-fb:before { content: "⏪"; } /* U+23EA - ⏪ */
|
195
|
+
.icon-to-start:before { content: "⏮"; } /* U+23EE - ⏮ */
|
196
|
+
.icon-to-end:before { content: "⏭"; } /* U+23ED - ⏭ */
|
197
|
+
.icon-resize-full:before { content: ""; } /* U+E744 -  */
|
198
|
+
.icon-resize-small:before { content: ""; } /* U+E746 -  */
|
199
|
+
.icon-volume:before { content: "⏷"; } /* U+23F7 - ⏷ */
|
200
|
+
.icon-sound:before { content: "🔊"; } /* U+1F50A - 🔊 */
|
201
|
+
.icon-mute:before { content: "🔇"; } /* U+1F507 - 🔇 */
|
202
|
+
.icon-flow-cascade:before { content: "🕨"; } /* U+1F568 - 🕨 */
|
203
|
+
.icon-flow-branch:before { content: "🕩"; } /* U+1F569 - 🕩 */
|
204
|
+
.icon-flow-tree:before { content: "🕪"; } /* U+1F56A - 🕪 */
|
205
|
+
.icon-flow-line:before { content: "🕫"; } /* U+1F56B - 🕫 */
|
206
|
+
.icon-flow-parallel:before { content: "🕬"; } /* U+1F56C - 🕬 */
|
207
|
+
.icon-left-bold:before { content: ""; } /* U+E4AD -  */
|
208
|
+
.icon-down-bold:before { content: ""; } /* U+E4B0 -  */
|
209
|
+
.icon-up-bold:before { content: ""; } /* U+E4AF -  */
|
210
|
+
.icon-right-bold:before { content: ""; } /* U+E4AE -  */
|
211
|
+
.icon-left:before { content: "⬅"; } /* U+2B05 - ⬅ */
|
212
|
+
.icon-down:before { content: "⬇"; } /* U+2B07 - ⬇ */
|
213
|
+
.icon-up:before { content: "⬆"; } /* U+2B06 - ⬆ */
|
214
|
+
.icon-right:before { content: "➡"; } /* U+27A1 - ➡ */
|
215
|
+
.icon-circled-left:before { content: ""; } /* U+E759 -  */
|
216
|
+
.icon-circled-down:before { content: ""; } /* U+E758 -  */
|
217
|
+
.icon-circled-up:before { content: ""; } /* U+E75B -  */
|
218
|
+
.icon-circled-right:before { content: ""; } /* U+E75A -  */
|
219
|
+
.icon-triangle-left:before { content: "◂"; } /* U+25C2 - ◂ */
|
220
|
+
.icon-triangle-down:before { content: "▾"; } /* U+25BE - ▾ */
|
221
|
+
.icon-triangle-up:before { content: "▴"; } /* U+25B4 - ▴ */
|
222
|
+
.icon-triangle-right:before { content: "▸"; } /* U+25B8 - ▸ */
|
223
|
+
.icon-chevron-left:before { content: ""; } /* U+E75D -  */
|
224
|
+
.icon-chevron-down:before { content: ""; } /* U+E75C -  */
|
225
|
+
.icon-chevron-up:before { content: ""; } /* U+E75F -  */
|
226
|
+
.icon-chevron-right:before { content: ""; } /* U+E75E -  */
|
227
|
+
.icon-chevron-small-left:before { content: ""; } /* U+E761 -  */
|
228
|
+
.icon-chevron-small-down:before { content: ""; } /* U+E760 -  */
|
229
|
+
.icon-chevron-small-up:before { content: ""; } /* U+E763 -  */
|
230
|
+
.icon-chevron-small-right:before { content: ""; } /* U+E762 -  */
|
231
|
+
.icon-chevron-thin-left:before { content: ""; } /* U+E765 -  */
|
232
|
+
.icon-chevron-thin-down:before { content: ""; } /* U+E764 -  */
|
233
|
+
.icon-chevron-thin-up:before { content: ""; } /* U+E767 -  */
|
234
|
+
.icon-chevron-thin-right:before { content: ""; } /* U+E766 -  */
|
235
|
+
.icon-left-thin:before { content: "←"; } /* U+2190 - &larr; */
|
236
|
+
.icon-down-thin:before { content: "↓"; } /* U+2193 - &darr; */
|
237
|
+
.icon-up-thin:before { content: "↑"; } /* U+2191 - &uarr; */
|
238
|
+
.icon-right-thin:before { content: "→"; } /* U+2192 - &rarr; */
|
239
|
+
.icon-arrow-combo:before { content: ""; } /* U+E74F -  */
|
240
|
+
.icon-three-dots:before { content: "⏶"; } /* U+23F6 - ⏶ */
|
241
|
+
.icon-two-dots:before { content: "⏵"; } /* U+23F5 - ⏵ */
|
242
|
+
.icon-dot:before { content: "⏴"; } /* U+23F4 - ⏴ */
|
243
|
+
.icon-cc:before { content: "🕅"; } /* U+1F545 - 🕅 */
|
244
|
+
.icon-cc-by:before { content: "🕆"; } /* U+1F546 - 🕆 */
|
245
|
+
.icon-cc-nc:before { content: "🕇"; } /* U+1F547 - 🕇 */
|
246
|
+
.icon-cc-nc-eu:before { content: "🕈"; } /* U+1F548 - 🕈 */
|
247
|
+
.icon-cc-nc-jp:before { content: "🕉"; } /* U+1F549 - 🕉 */
|
248
|
+
.icon-cc-sa:before { content: "🕊"; } /* U+1F54A - 🕊 */
|
249
|
+
.icon-cc-nd:before { content: "🕋"; } /* U+1F54B - 🕋 */
|
250
|
+
.icon-cc-pd:before { content: "🕌"; } /* U+1F54C - 🕌 */
|
251
|
+
.icon-cc-zero:before { content: "🕍"; } /* U+1F54D - 🕍 */
|
252
|
+
.icon-cc-share:before { content: "🕎"; } /* U+1F54E - 🕎 */
|
253
|
+
.icon-cc-remix:before { content: "🕏"; } /* U+1F54F - 🕏 */
|
254
|
+
.icon-db-logo:before { content: "🗹"; } /* U+1F5F9 - 🗹 */
|
255
|
+
.icon-db-shape:before { content: "🗺"; } /* U+1F5FA - 🗺 */
|
256
|
+
|
257
|
+
/* social extention map */
|
258
|
+
.icon-social-github:before { content: ""; } /* U+F300 -  */
|
259
|
+
.icon-social-c-github:before { content: ""; } /* U+F301 -  */
|
260
|
+
.icon-social-flickr:before { content: ""; } /* U+F303 -  */
|
261
|
+
.icon-social-c-flickr:before { content: ""; } /* U+F304 -  */
|
262
|
+
.icon-social-vimeo:before { content: ""; } /* U+F306 -  */
|
263
|
+
.icon-social-c-vimeo:before { content: ""; } /* U+F307 -  */
|
264
|
+
.icon-social-twitter:before { content: ""; } /* U+F309 -  */
|
265
|
+
.icon-social-c-twitter:before { content: ""; } /* U+F30A -  */
|
266
|
+
.icon-social-facebook:before { content: ""; } /* U+F30C -  */
|
267
|
+
.icon-social-c-facebook:before { content: ""; } /* U+F30D -  */
|
268
|
+
.icon-social-s-facebook:before { content: ""; } /* U+F30E -  */
|
269
|
+
.icon-social-google+:before { content: ""; } /* U+F30F -  */
|
270
|
+
.icon-social-c-google+:before { content: ""; } /* U+F310 -  */
|
271
|
+
.icon-social-pinterest:before { content: ""; } /* U+F312 -  */
|
272
|
+
.icon-social-c-pinterest:before { content: ""; } /* U+F313 -  */
|
273
|
+
.icon-social-tumblr:before { content: ""; } /* U+F315 -  */
|
274
|
+
.icon-social-c-tumblr:before { content: ""; } /* U+F316 -  */
|
275
|
+
.icon-social-linkedin:before { content: ""; } /* U+F318 -  */
|
276
|
+
.icon-social-c-linkedin:before { content: ""; } /* U+F319 -  */
|
277
|
+
.icon-social-dribbble:before { content: ""; } /* U+F31B -  */
|
278
|
+
.icon-social-c-dribbble:before { content: ""; } /* U+F31C -  */
|
279
|
+
.icon-social-stumbleupon:before { content: ""; } /* U+F31E -  */
|
280
|
+
.icon-social-c-stumbleupon:before { content: ""; } /* U+F31F -  */
|
281
|
+
.icon-social-lastfm:before { content: ""; } /* U+F321 -  */
|
282
|
+
.icon-social-c-lastfm:before { content: ""; } /* U+F322 -  */
|
283
|
+
.icon-social-rdio:before { content: ""; } /* U+F324 -  */
|
284
|
+
.icon-social-c-rdio:before { content: ""; } /* U+F325 -  */
|
285
|
+
.icon-social-spotify:before { content: ""; } /* U+F327 -  */
|
286
|
+
.icon-social-c-spotify:before { content: ""; } /* U+F328 -  */
|
287
|
+
.icon-social-qq:before { content: ""; } /* U+F32A -  */
|
288
|
+
.icon-social-instagram:before { content: ""; } /* U+F32D -  */
|
289
|
+
.icon-social-dropbox:before { content: ""; } /* U+F330 -  */
|
290
|
+
.icon-social-evernote:before { content: ""; } /* U+F333 -  */
|
291
|
+
.icon-social-flattr:before { content: ""; } /* U+F336 -  */
|
292
|
+
.icon-social-skype:before { content: ""; } /* U+F339 -  */
|
293
|
+
.icon-social-c-skype:before { content: ""; } /* U+F33A -  */
|
294
|
+
.icon-social-renren:before { content: ""; } /* U+F33C -  */
|
295
|
+
.icon-social-sina-weibo:before { content: ""; } /* U+F33F -  */
|
296
|
+
.icon-social-paypal:before { content: ""; } /* U+F342 -  */
|
297
|
+
.icon-social-picasa:before { content: ""; } /* U+F345 -  */
|
298
|
+
.icon-social-soundcloud:before { content: ""; } /* U+F348 -  */
|
299
|
+
.icon-social-mixi:before { content: ""; } /* U+F34B -  */
|
300
|
+
.icon-social-behance:before { content: ""; } /* U+F34E -  */
|
301
|
+
.icon-social-google-circles:before { content: ""; } /* U+F351 -  */
|
302
|
+
.icon-social-vk:before { content: ""; } /* U+F354 -  */
|
303
|
+
.icon-social-smashing:before { content: ""; } /* U+F357 -  */
|
data/lib/entypo-rails.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# The entypo-rails plugin provides access to the Entypo pictograms
|
2
|
+
# by Daniel Bruce http://www.entypo.com in the Rails asset pipeline.
|
3
|
+
module Entypo
|
4
|
+
|
5
|
+
# Dummy engine so that lib/assets/stylesheets and vendor/assets/fonts
|
6
|
+
# are picked up by Rails asset pipeline.
|
7
|
+
class Engine < ::Rails::Engine
|
8
|
+
end
|
9
|
+
end
|
data/vendor/.DS_Store
ADDED
Binary file
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
|
2
|
+
<defs >
|
3
|
+
<font id="entypo-social" horiz-adv-x="555" ><font-face
|
4
|
+
font-family="Entypo Social"
|
5
|
+
units-per-em="1000"
|
6
|
+
panose-1="0 0 0 0 0 0 0 0 0 0"
|
7
|
+
ascent="750"
|
8
|
+
descent="-250"
|
9
|
+
alphabetic="0" />
|
10
|
+
<missing-glyph horiz-adv-x="500" />
|
11
|
+
</font>
|
12
|
+
</defs>
|
13
|
+
</svg>
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
|
2
|
+
<defs >
|
3
|
+
<font id="entypo" horiz-adv-x="508" ><font-face
|
4
|
+
font-family="Entypo"
|
5
|
+
units-per-em="1000"
|
6
|
+
panose-1="0 0 0 0 0 0 0 0 0 0"
|
7
|
+
ascent="750"
|
8
|
+
descent="-250"
|
9
|
+
alphabetic="0" />
|
10
|
+
<missing-glyph horiz-adv-x="500" />
|
11
|
+
</font>
|
12
|
+
</defs>
|
13
|
+
</svg>
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: entypo-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Lukas Westermann
|
14
|
+
- Marco Pluess
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2012-11-24 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
hash: 5
|
28
|
+
segments:
|
29
|
+
- 3
|
30
|
+
- 1
|
31
|
+
version: "3.1"
|
32
|
+
prerelease: false
|
33
|
+
type: :runtime
|
34
|
+
name: railties
|
35
|
+
version_requirements: *id001
|
36
|
+
description: Rails asset pipeline plugin and CSS mappings for the Entypo pictograms by Daniel Bruce http://www.entypo.com
|
37
|
+
email:
|
38
|
+
- lukas@at-point.ch
|
39
|
+
- marco@at-point.ch
|
40
|
+
executables: []
|
41
|
+
|
42
|
+
extensions: []
|
43
|
+
|
44
|
+
extra_rdoc_files: []
|
45
|
+
|
46
|
+
files:
|
47
|
+
- .gitignore
|
48
|
+
- Gemfile
|
49
|
+
- LICENSE
|
50
|
+
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- entypo-rails.gemspec
|
53
|
+
- lib/assets/stylesheets/entypo-fonts.css.erb
|
54
|
+
- lib/assets/stylesheets/entypo.css.scss
|
55
|
+
- lib/entypo-rails.rb
|
56
|
+
- lib/entypo-rails/version.rb
|
57
|
+
- vendor/.DS_Store
|
58
|
+
- vendor/assets/fonts/entypo-social.eot
|
59
|
+
- vendor/assets/fonts/entypo-social.svg
|
60
|
+
- vendor/assets/fonts/entypo-social.ttf
|
61
|
+
- vendor/assets/fonts/entypo-social.woff
|
62
|
+
- vendor/assets/fonts/entypo.eot
|
63
|
+
- vendor/assets/fonts/entypo.svg
|
64
|
+
- vendor/assets/fonts/entypo.ttf
|
65
|
+
- vendor/assets/fonts/entypo.woff
|
66
|
+
homepage: ""
|
67
|
+
licenses:
|
68
|
+
- MIT
|
69
|
+
- CC BY 3.0
|
70
|
+
- SIL Open Font License
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
|
74
|
+
require_paths:
|
75
|
+
- lib
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
hash: 3
|
82
|
+
segments:
|
83
|
+
- 0
|
84
|
+
version: "0"
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
91
|
+
segments:
|
92
|
+
- 0
|
93
|
+
version: "0"
|
94
|
+
requirements: []
|
95
|
+
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 1.8.24
|
98
|
+
signing_key:
|
99
|
+
specification_version: 3
|
100
|
+
summary: Rails asset pipeline plugin to provide Entypo icons.
|
101
|
+
test_files: []
|
102
|
+
|