material-icons-rails 0.2.0 → 0.2.1

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: 5211f2c06e1795da087f345f3363233f1078ebb9
4
- data.tar.gz: d8a7d3858e4cd4ace5cd6160343bb5a13acd1389
3
+ metadata.gz: 6ac6db98e7271aeefdb51e44bdeea57cc92b8e3b
4
+ data.tar.gz: dee12f8ce60f363e9532f525844e92ae768bc4d2
5
5
  SHA512:
6
- metadata.gz: 8f031697dbab1b80e15617fdcd81c26d0308789fd85c0a6e0ef88ddb7479e0f5212ecbb8b498b5a55fd7aea5143726ddbe27f11d5d4f2347dae16f105b28e6ba
7
- data.tar.gz: dce9af97fc209a54b174fc6c22138811ca3aeb887c9d279f95712a2c510d120cc6f0fdc952dd4a3f0b2d1496a35b555547cef54ae2e5af5a2c33b8f354524d32
6
+ metadata.gz: ab33b6dec8c49fc15f1f559bc617575d484dad84017f5111e341437af4da62c0941d2823f78949f67919d76aaa0e018c93cd9ecb009686b0a82016e1c2d736bc
7
+ data.tar.gz: 01862d3347c3c2522491f5e1c9fc9d0a6c1f3a1dc948e73a06aabacbf7ac0f9a1a9a59d47ed122c87b7c83163bc3ed10644d5a162e5e3d899dd12a4b284c865e
@@ -0,0 +1,40 @@
1
+ // style snippet from http://google.github.io/material-design-icons/#icon-font-for-the-web
2
+
3
+ @font-face {
4
+ font-family: 'Material Icons';
5
+ font-style: normal;
6
+ font-weight: 400;
7
+ src: font-url('material_icons/MaterialIcons-Regular.eot'); /* For IE6-8 */
8
+ src: local('Material Icons'),
9
+ local('MaterialIcons-Regular'),
10
+ font-url('material_icons/MaterialIcons-Regular.woff2') format('woff2'),
11
+ font-url('material_icons/MaterialIcons-Regular.woff') format('woff'),
12
+ font-url('material_icons/MaterialIcons-Regular.ttf') format('truetype');
13
+ }
14
+
15
+ .material-icons {
16
+ font-family: 'Material Icons';
17
+ font-weight: normal;
18
+ font-style: normal;
19
+ font-size: 24px; /* Preferred icon size */
20
+ display: inline-block;
21
+ width: 1em;
22
+ height: 1em;
23
+ line-height: 1;
24
+ text-transform: none;
25
+ letter-spacing: normal;
26
+ word-wrap: normal;
27
+ white-space: nowrap;
28
+ direction: ltr;
29
+
30
+ /* Support for all WebKit browsers. */
31
+ -webkit-font-smoothing: antialiased;
32
+ /* Support for Safari and Chrome. */
33
+ text-rendering: optimizeLegibility;
34
+
35
+ /* Support for Firefox. */
36
+ -moz-osx-font-smoothing: grayscale;
37
+
38
+ /* Support for IE. */
39
+ font-feature-settings: 'liga';
40
+ }
@@ -1,6 +1,6 @@
1
1
  module MaterialIcons
2
2
  module Rails
3
3
  MATERIAL_ICONS_VERSION = "2.0.0"
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: material-icons-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Qiuhao
@@ -80,6 +80,11 @@ extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
82
  - README.md
83
+ - app/assets/fonts/material_icons/MaterialIcons-Regular.eot
84
+ - app/assets/fonts/material_icons/MaterialIcons-Regular.ttf
85
+ - app/assets/fonts/material_icons/MaterialIcons-Regular.woff
86
+ - app/assets/fonts/material_icons/MaterialIcons-Regular.woff2
87
+ - app/assets/stylesheets/material_icons.css.scss
83
88
  - lib/material-icons-rails.rb
84
89
  - lib/material-icons-rails/engine.rb
85
90
  - lib/material-icons-rails/version.rb