evil_icons 1.7.6 → 1.7.7

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: e9ff37c12624d09bffdc0d5332cd45b8d80188c0
4
- data.tar.gz: 1a5fca3a5662afeb27c799c2d0579ac0954d00b5
3
+ metadata.gz: e0e4d32b50518dd330dbc6691b7f19f3b78c94db
4
+ data.tar.gz: fec40eebe5611ed8749c6ff43dbe0975c04667ef
5
5
  SHA512:
6
- metadata.gz: e4d7c92667929d5881315d1da30bd091dc8b2b0d9475d0ee979173f81d765ae88086749904898694239f7f967345fe6a3e049cf89bc7ad78c31bb0d82aa420cb
7
- data.tar.gz: 41ddc6b10b21a451c066ef6701f5625c713677f912de60f01185b7833e51f80c70e2cd26794d40104bc96b96562ea466225b067be034fb15c5b2add881597740
6
+ metadata.gz: 6bb3b2c655879006bd366e88ace8748b9f432f619862cd8da50e59d8bf3de98ed1351ef82f729115b01ff455db3683eafac5a3814d284bafe0217749eca6bfed
7
+ data.tar.gz: 1b3de34060e8cb890469b5c139a3218605342540beb9af989221664195e7d0b316e434f6846a2a0cf02eefbb1f4283aea7e4b8f625e2ba2fe3b6f5c6fd6ad6fb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v1.7.7
2
+ * Fixed click events #65
3
+
1
4
  ## v1.7.6
2
5
  * Fixed libxmljs fail
3
6
 
data/README.md CHANGED
@@ -181,14 +181,14 @@ Use the [React component](https://github.com/saulhoward/react-evil-icons).
181
181
 
182
182
  ### Styling
183
183
 
184
- Every icon has the `.icon` class and its modifier including the icon name. For example, the facebook icon has the `.icon--ei-sc-facebook` modifier.
184
+ Every icon has the `.icon` class and its modifier including the icon name. For example, the Facebook icon has the `.icon--ei-sc-facebook` modifier.
185
185
 
186
- In addition, an icon may have a size modifier. But we do recommend to change the size using helper's `size` parameter instead. Evil Icons have some predefined sizes: `s` (25x25, default), `m` (50×50), `l` (100×100), `xl` (150×150) and `xxl` (200×200). You may want to add more sizes, we recommend to keep the sizes multiple to 25.
186
+ Also, an icon may have a size modifier. But we do recommend to change the size using helper's `size` parameter instead. Evil Icons have some predefined sizes: `s` (25x25, default), `m` (50×50), `l` (100×100), `xl` (150×150) and `xxl` (200×200). You may want to add more sizes, we recommend keeping the sizes multiple to 25.
187
187
  ```js
188
188
  icons.icon("ei-arrow-right", {size: "m"})
189
189
  ```
190
190
 
191
- Also you may want to add a custom class for an icon.
191
+ Also, you may want to add a custom class for an icon.
192
192
  You can do this using the `class` parameter:
193
193
  ```js
194
194
  icons.icon("ei-envelope", {class: "custom-class"})
@@ -27,6 +27,7 @@
27
27
  height: 100%;
28
28
  background: inherit;
29
29
  fill: inherit;
30
+ pointer-events: none; /* Do not catch pointer events */
30
31
  transform: translateX(0); /* Crisp fix for non-retina */
31
32
  -ms-transform: translate(0.5px, -0.3px); /* Crisp fix for IE */
32
33
  }
data/assets/evil-icons.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Evil Icons 1.7.5
2
+ * Evil Icons 1.7.7
3
3
  * http://evil-icons.io
4
4
  * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
5
5
  * Copyright 2014-2015 Alexander Madyankin <alexander@madyankin.name>, Roman Shamin <al4emist.artway@gmail.com>
@@ -1,3 +1,3 @@
1
1
  module EvilIcons
2
- VERSION = "1.7.6"
2
+ VERSION = "1.7.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evil_icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.6
4
+ version: 1.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Madyankin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-05-02 00:00:00.000000000 Z
12
+ date: 2015-07-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri