font-awesome-rails-base64 4.0.3.2 → 4.0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/app/assets/stylesheets/font-awesome-base64.css.erb +1 -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: f4fe86340229dc74ea2382495b6810528a196403
|
4
|
+
data.tar.gz: e49bab9fc795567fc5dd403e2c8bddc35d01be00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c505b3f52791754e04d62ad6403b7f7883c198f3d4acd785e5648c647708f49ea8c0fa4cbe26476c2aa00d93920c202130946441156c4339a85680f30efaecca
|
7
|
+
data.tar.gz: 4250549b577872baf865198f594196bd8393d6993e9e7112a84a4f39178fdfffd8ac87bfa44eaee6541d87d60f16161494463986e95e14a99612332139ab139a
|
data/README.md
CHANGED
@@ -128,6 +128,7 @@ so that these helpers are automatically loaded in production environments.
|
|
128
128
|
| 4.0.3.0 | 0373b63 | 4.0.3 release (minor icon renames and updates) |
|
129
129
|
| 4.0.3.1 | 44e127f | 4.0.3 release (embedding of fonts dynamically) |
|
130
130
|
| 4.0.3.2 | 629011e | 4.0.3 release (embedding of fonts minor tweak) |
|
131
|
+
| 4.0.3.3 | 37d98a1 | 4.0.3 release (removed all but one font) |
|
131
132
|
|
132
133
|
**note on version 0.2.0**: FontAwesome now includes scss and sass files, but
|
133
134
|
when I used them instead of the plain ol css file included in the project, it
|
@@ -6,11 +6,7 @@
|
|
6
6
|
* -------------------------- */
|
7
7
|
@font-face {
|
8
8
|
font-family: 'FontAwesome';
|
9
|
-
src: url(data:
|
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');
|
9
|
+
src: url(data:image/svg+xml;charset=utf-8;base64,<%= Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.svg'].source) %>) format('svg');
|
14
10
|
font-weight: normal;
|
15
11
|
font-style: normal;
|
16
12
|
}
|