drg_material_icons 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/app/assets/fonts/material-icons-outline.woff2 +0 -0
- data/app/assets/fonts/material-icons-regular.woff2 +0 -0
- data/app/assets/stylesheets/drg_material_icons.css +655 -325
- data/lib/drg_material_icons/version.rb +1 -1
- data/lib/generators/drg_material_icons_update/material-icons-outline.codepoints +530 -305
- data/lib/generators/drg_material_icons_update/material-icons-regular.codepoints +45 -0
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9babfbae804d9f3c18d1acf22eb5ee72019af583a6ad7182f8dafd302fd470d6
|
|
4
|
+
data.tar.gz: 71799425823a2249974b919c27e29346b67f11d090c6e289cceda88fdc2536f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcb53cfb447be34ae21a32b1d7981f6355b0115398093b18bfcb7a3c0e9f2f9c83d6cd56b7aa4868d19f8202b84d6757213bf9c7a5b4ba3b649b9bfb42e8be52
|
|
7
|
+
data.tar.gz: d2d3e6faa6f6f47d75e2cf634b611c2bccde0905a2f5cc9da14c727adf25a9bfdb7a33f28bfdf536af32b9c4ffc2dbcf82df9ee1e08cde62bc146860f566aa0f
|
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ with drg_material_icons gem.
|
|
|
16
16
|
|
|
17
17
|
Add this code to your Gemfile:
|
|
18
18
|
```ruby
|
|
19
|
-
gem "
|
|
19
|
+
gem "drg_material_icons"
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
and run `bundle install`.
|
|
@@ -27,7 +27,7 @@ In your `application.css`, include the css file:
|
|
|
27
27
|
|
|
28
28
|
```css
|
|
29
29
|
/*
|
|
30
|
-
*= require
|
|
30
|
+
*= require drg_material_icons
|
|
31
31
|
*/
|
|
32
32
|
```
|
|
33
33
|
Then restart your webserver if it was previously running.
|
|
@@ -64,6 +64,12 @@ mi_icon "photo_camera-o", text: "Get started"
|
|
|
64
64
|
# => Get started <i class="mi-o mi-photo_camera">Get started</i>
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
Support for spinning icons.
|
|
68
|
+
```ruby
|
|
69
|
+
mi_icon "settings-o spin"
|
|
70
|
+
# => <i class="mi-o mi-settings mi-spin"></i>
|
|
71
|
+
```
|
|
72
|
+
|
|
67
73
|
There is also support for colored icons.
|
|
68
74
|
```ruby
|
|
69
75
|
mi_icon "photo_camera red"
|
|
Binary file
|
|
Binary file
|