font-awesome-rails-base64 4.0.3.1 → 4.0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/app/assets/stylesheets/font-awesome-base64.css.erb +5 -5
- data/lib/font-awesome-rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7bf3b7075e13c840913f6e698fface1f496c61eb
|
4
|
+
data.tar.gz: 72da6028217dcf3dd08c661ebcb2e3581ace54a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb816d05685eb4b75984c43979a3c951312965415cb3e1ad930102fe19b827dc48957a95bb30219c0f84a86698d944b0217b9cb32dfe691ae14ea46c33f64225
|
7
|
+
data.tar.gz: c40739f8f8a913f7f06489383a25cb5623717fd919c82ea2221d6bc698f686ac0039cb7be45151ab7cefc9c72634bb12b5f050716d11e74cb653beb3fb8a05ab
|
data/README.md
CHANGED
@@ -126,6 +126,8 @@ so that these helpers are automatically loaded in production environments.
|
|
126
126
|
| 4.0.0.0 | 4e92eeb | 4.0.0 release (new naming conventions, new icons, IE7 support dropped) |
|
127
127
|
| 4.0.1.0 | c84c8ab | 4.0.1 release (fixed hdd icon and fa-stack alignment) |
|
128
128
|
| 4.0.3.0 | 0373b63 | 4.0.3 release (minor icon renames and updates) |
|
129
|
+
| 4.0.3.1 | 44e127f | 4.0.3 release (embedding of fonts dynamically) |
|
130
|
+
| 4.0.3.2 | 629011e | 4.0.3 release (embedding of fonts minor tweak) |
|
129
131
|
|
130
132
|
**note on version 0.2.0**: FontAwesome now includes scss and sass files, but
|
131
133
|
when I used them instead of the plain ol css file included in the project, it
|
@@ -6,11 +6,11 @@
|
|
6
6
|
* -------------------------- */
|
7
7
|
@font-face {
|
8
8
|
font-family: 'FontAwesome';
|
9
|
-
src: url(
|
10
|
-
url(
|
11
|
-
url(
|
12
|
-
url(
|
13
|
-
url(
|
9
|
+
src: url(data:application/x-font-otf;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['FontAwesome.otf'].to_s) %>) format('otf'),
|
10
|
+
url(data:application/x-font-woff;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.woff'].to_s) %>) format('woff'),
|
11
|
+
url(data:application/x-font-ttf;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.ttf'].to_s) %>) format('ttf'),
|
12
|
+
url(data:application/vnd.ms-fontobject;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.eot'].to_s) %>) format('eot'),
|
13
|
+
url(data:image/svg+xml;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.svg'].to_s) %>) format('svg');
|
14
14
|
font-weight: normal;
|
15
15
|
font-style: normal;
|
16
16
|
}
|