icalicons 0.1.1 → 0.1.2
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/.DS_Store +0 -0
- data/.gitignore +2 -0
- data/lib/icalicons/version.rb +1 -1
- data/vendor/assets/stylesheets/icalicons.css.erb +105 -102
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d44c7a65d4605141c17d8c0a07cebdefd3c1929
|
|
4
|
+
data.tar.gz: 073d72da9a08d649081887f9f24ce74a26be1de6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 946f8a27f779924c0572af8f9be27c3a99aa5e4cabdb6f7d168ea4ff8bec8d46711bf88889983d249076fcf49fc1a8105763b48dc214af7396608574c264a85e
|
|
7
|
+
data.tar.gz: 4247833a117ff6744b456f0858cc96a2bdf1523390b614b3a90ead2f41ddce34193743c1c4f746416bfce50add1ba566c21060c3c27673642727a2357deb72f1
|
data/.DS_Store
CHANGED
|
Binary file
|
data/.gitignore
CHANGED
data/lib/icalicons/version.rb
CHANGED
|
@@ -10,307 +10,310 @@
|
|
|
10
10
|
text-decoration: inherit;
|
|
11
11
|
text-rendering: auto;
|
|
12
12
|
text-transform: none;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
font-size: 1.2em;
|
|
14
|
+
line-height: 1em;
|
|
15
|
+
vertical-align: middle;
|
|
16
|
+
}
|
|
17
|
+
.il-shadow {
|
|
18
|
+
text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); }
|
|
16
19
|
|
|
17
20
|
@font-face {
|
|
18
21
|
font-family: 'icalicons';
|
|
19
22
|
src: url('<%= font_path('icalicons.eot') %>');
|
|
20
23
|
src: url('<%= font_path('icalicons.eot') %>#iefix') format("embedded-opentype"),
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
url('<%= font_path('icalicons.woff2') %>') format("woff2"),
|
|
25
|
+
url('<%= font_path('icalicons.woff') %>') format("woff"),
|
|
26
|
+
url('<%= font_path('icalicons.ttf') %>') format("truetype"),
|
|
27
|
+
url('<%= font_path('icalicons.svg') %>') format("svg");
|
|
25
28
|
font-weight: normal;
|
|
26
|
-
|
|
29
|
+
font-style: normal; }
|
|
27
30
|
|
|
28
31
|
.il-dropbox::before {
|
|
29
|
-
|
|
32
|
+
content: '\e000'; }
|
|
30
33
|
|
|
31
34
|
.il-paypal::before {
|
|
32
|
-
|
|
35
|
+
content: '\e001'; }
|
|
33
36
|
|
|
34
37
|
.il-linkedin::before {
|
|
35
|
-
|
|
38
|
+
content: '\e002'; }
|
|
36
39
|
|
|
37
40
|
.il-google-plus::before {
|
|
38
|
-
|
|
41
|
+
content: '\e003'; }
|
|
39
42
|
|
|
40
43
|
.il-github::before {
|
|
41
|
-
|
|
44
|
+
content: '\e004'; }
|
|
42
45
|
|
|
43
46
|
.il-ellipsis::before {
|
|
44
|
-
|
|
47
|
+
content: '\e005'; }
|
|
45
48
|
|
|
46
49
|
.il-arrow-left::before {
|
|
47
|
-
|
|
50
|
+
content: '\e006'; }
|
|
48
51
|
|
|
49
52
|
.il-mic::before {
|
|
50
|
-
|
|
53
|
+
content: '\e007'; }
|
|
51
54
|
|
|
52
55
|
.il-arrow-right::before {
|
|
53
|
-
|
|
56
|
+
content: '\e008'; }
|
|
54
57
|
|
|
55
58
|
.il-ribbon::before {
|
|
56
|
-
|
|
59
|
+
content: '\e009'; }
|
|
57
60
|
|
|
58
61
|
.il-pin::before {
|
|
59
|
-
|
|
62
|
+
content: '\e00a'; }
|
|
60
63
|
|
|
61
64
|
.il-image::before {
|
|
62
|
-
|
|
65
|
+
content: '\e00b'; }
|
|
63
66
|
|
|
64
67
|
.il-conversation::before {
|
|
65
|
-
|
|
68
|
+
content: '\e00c'; }
|
|
66
69
|
|
|
67
70
|
.il-cup::before {
|
|
68
|
-
|
|
71
|
+
content: '\e00d'; }
|
|
69
72
|
|
|
70
73
|
.il-comment::before {
|
|
71
|
-
|
|
74
|
+
content: '\e00e'; }
|
|
72
75
|
|
|
73
76
|
.il-dialog::before {
|
|
74
|
-
|
|
77
|
+
content: '\e00f'; }
|
|
75
78
|
|
|
76
79
|
.il-notification::before {
|
|
77
|
-
|
|
80
|
+
content: '\e010'; }
|
|
78
81
|
|
|
79
82
|
.il-grid::before {
|
|
80
|
-
|
|
83
|
+
content: '\e011'; }
|
|
81
84
|
|
|
82
85
|
.il-refresh::before {
|
|
83
|
-
|
|
86
|
+
content: '\e012'; }
|
|
84
87
|
|
|
85
88
|
.il-email::before {
|
|
86
|
-
|
|
89
|
+
content: '\e013'; }
|
|
87
90
|
|
|
88
91
|
.il-calendar::before {
|
|
89
|
-
|
|
92
|
+
content: '\e014'; }
|
|
90
93
|
|
|
91
94
|
.il-camera::before {
|
|
92
|
-
|
|
95
|
+
content: '\e015'; }
|
|
93
96
|
|
|
94
97
|
.il-controls::before {
|
|
95
|
-
|
|
98
|
+
content: '\e016'; }
|
|
96
99
|
|
|
97
100
|
.il-envelope::before {
|
|
98
|
-
|
|
101
|
+
content: '\e017'; }
|
|
99
102
|
|
|
100
103
|
.il-card::before {
|
|
101
|
-
|
|
104
|
+
content: '\e018'; }
|
|
102
105
|
|
|
103
106
|
.il-clock::before {
|
|
104
|
-
|
|
107
|
+
content: '\e019'; }
|
|
105
108
|
|
|
106
109
|
.il-layers::before {
|
|
107
|
-
|
|
110
|
+
content: '\e01a'; }
|
|
108
111
|
|
|
109
112
|
.il-money::before {
|
|
110
|
-
|
|
113
|
+
content: '\e01b'; }
|
|
111
114
|
|
|
112
115
|
.il-location::before {
|
|
113
|
-
|
|
116
|
+
content: '\e01c'; }
|
|
114
117
|
|
|
115
118
|
.il-url::before {
|
|
116
|
-
|
|
119
|
+
content: '\e01d'; }
|
|
117
120
|
|
|
118
121
|
.il-brightness::before {
|
|
119
|
-
|
|
122
|
+
content: '\e01e'; }
|
|
120
123
|
|
|
121
124
|
.il-videocamera::before {
|
|
122
|
-
|
|
125
|
+
content: '\e01f'; }
|
|
123
126
|
|
|
124
127
|
.il-basket::before {
|
|
125
|
-
|
|
128
|
+
content: '\e020'; }
|
|
126
129
|
|
|
127
130
|
.il-market::before {
|
|
128
|
-
|
|
131
|
+
content: '\e021'; }
|
|
129
132
|
|
|
130
133
|
.il-pie::before {
|
|
131
|
-
|
|
134
|
+
content: '\e022'; }
|
|
132
135
|
|
|
133
136
|
.il-menu::before {
|
|
134
|
-
|
|
137
|
+
content: '\e023'; }
|
|
135
138
|
|
|
136
139
|
.il-arrow-up::before {
|
|
137
|
-
|
|
140
|
+
content: '\e024'; }
|
|
138
141
|
|
|
139
142
|
.il-arrow-down::before {
|
|
140
|
-
|
|
143
|
+
content: '\e025'; }
|
|
141
144
|
|
|
142
145
|
.il-cart::before {
|
|
143
|
-
|
|
146
|
+
content: '\e026'; }
|
|
144
147
|
|
|
145
148
|
.il-inbox::before {
|
|
146
|
-
|
|
149
|
+
content: '\e027'; }
|
|
147
150
|
|
|
148
151
|
.il-eye::before {
|
|
149
|
-
|
|
152
|
+
content: '\e028'; }
|
|
150
153
|
|
|
151
154
|
.il-tag::before {
|
|
152
|
-
|
|
155
|
+
content: '\e029'; }
|
|
153
156
|
|
|
154
157
|
.il-moon::before {
|
|
155
|
-
|
|
158
|
+
content: '\e02a'; }
|
|
156
159
|
|
|
157
160
|
.il-folder::before {
|
|
158
|
-
|
|
161
|
+
content: '\e02b'; }
|
|
159
162
|
|
|
160
163
|
.il-house::before {
|
|
161
|
-
|
|
164
|
+
content: '\e02c'; }
|
|
162
165
|
|
|
163
166
|
.il-compass::before {
|
|
164
|
-
|
|
167
|
+
content: '\e02d'; }
|
|
165
168
|
|
|
166
169
|
.il-cog::before {
|
|
167
|
-
|
|
170
|
+
content: '\e02e'; }
|
|
168
171
|
|
|
169
172
|
.il-cloud::before {
|
|
170
|
-
|
|
173
|
+
content: '\e02f'; }
|
|
171
174
|
|
|
172
175
|
.il-world::before {
|
|
173
|
-
|
|
176
|
+
content: '\e030'; }
|
|
174
177
|
|
|
175
178
|
.il-contrast::before {
|
|
176
|
-
|
|
179
|
+
content: '\e031'; }
|
|
177
180
|
|
|
178
181
|
.il-heart::before {
|
|
179
|
-
|
|
182
|
+
content: '\e032'; }
|
|
180
183
|
|
|
181
184
|
.il-pencil::before {
|
|
182
|
-
|
|
185
|
+
content: '\e033'; }
|
|
183
186
|
|
|
184
187
|
.il-dashboard::before {
|
|
185
|
-
|
|
188
|
+
content: '\e034'; }
|
|
186
189
|
|
|
187
190
|
.il-thumbs::before {
|
|
188
|
-
|
|
191
|
+
content: '\e035'; }
|
|
189
192
|
|
|
190
193
|
.il-book::before {
|
|
191
|
-
|
|
194
|
+
content: '\e036'; }
|
|
192
195
|
|
|
193
196
|
.il-search::before {
|
|
194
|
-
|
|
197
|
+
content: '\e037'; }
|
|
195
198
|
|
|
196
199
|
.il-music::before {
|
|
197
|
-
|
|
200
|
+
content: '\e038'; }
|
|
198
201
|
|
|
199
202
|
.il-bell::before {
|
|
200
|
-
|
|
203
|
+
content: '\e039'; }
|
|
201
204
|
|
|
202
205
|
.il-bucket::before {
|
|
203
|
-
|
|
206
|
+
content: '\e03a'; }
|
|
204
207
|
|
|
205
208
|
.il-tablet::before {
|
|
206
|
-
|
|
209
|
+
content: '\e03b'; }
|
|
207
210
|
|
|
208
211
|
.il-add-user::before {
|
|
209
|
-
|
|
212
|
+
content: '\e03c'; }
|
|
210
213
|
|
|
211
214
|
.il-mobile::before {
|
|
212
|
-
|
|
215
|
+
content: '\e03d'; }
|
|
213
216
|
|
|
214
217
|
.il-small-arrow-up::before {
|
|
215
|
-
|
|
218
|
+
content: '\e03e'; }
|
|
216
219
|
|
|
217
220
|
.il-small-arrow-right::before {
|
|
218
|
-
|
|
221
|
+
content: '\e03f'; }
|
|
219
222
|
|
|
220
223
|
.il-small-arrow-left::before {
|
|
221
|
-
|
|
224
|
+
content: '\e040'; }
|
|
222
225
|
|
|
223
226
|
.il-user::before {
|
|
224
|
-
|
|
227
|
+
content: '\e041'; }
|
|
225
228
|
|
|
226
229
|
.il-users::before {
|
|
227
|
-
|
|
230
|
+
content: '\e042'; }
|
|
228
231
|
|
|
229
232
|
.il-box::before {
|
|
230
|
-
|
|
233
|
+
content: '\e043'; }
|
|
231
234
|
|
|
232
235
|
.il-dribbble::before {
|
|
233
|
-
|
|
236
|
+
content: '\e044'; }
|
|
234
237
|
|
|
235
238
|
.il-small-arrow-down::before {
|
|
236
|
-
|
|
239
|
+
content: '\e800'; }
|
|
237
240
|
|
|
238
241
|
.il-select::before {
|
|
239
|
-
|
|
242
|
+
content: '\e801'; }
|
|
240
243
|
|
|
241
244
|
.il-triangle-down::before {
|
|
242
|
-
|
|
245
|
+
content: '\e802'; }
|
|
243
246
|
|
|
244
247
|
.il-triangle-up::before {
|
|
245
|
-
|
|
248
|
+
content: '\e803'; }
|
|
246
249
|
|
|
247
250
|
.il-attachment::before {
|
|
248
|
-
|
|
251
|
+
content: '\e804'; }
|
|
249
252
|
|
|
250
253
|
.il-lock::before {
|
|
251
|
-
|
|
254
|
+
content: '\e805'; }
|
|
252
255
|
|
|
253
256
|
.il-unlock::before {
|
|
254
|
-
|
|
257
|
+
content: '\e806'; }
|
|
255
258
|
|
|
256
259
|
.il-flag::before {
|
|
257
|
-
|
|
260
|
+
content: '\e807'; }
|
|
258
261
|
|
|
259
262
|
.il-drop::before {
|
|
260
|
-
|
|
263
|
+
content: '\e808'; }
|
|
261
264
|
|
|
262
265
|
.il-file::before {
|
|
263
|
-
|
|
266
|
+
content: '\e809'; }
|
|
264
267
|
|
|
265
268
|
.il-facebook::before {
|
|
266
|
-
|
|
269
|
+
content: '\e80a'; }
|
|
267
270
|
|
|
268
271
|
.il-twitter::before {
|
|
269
|
-
|
|
272
|
+
content: '\e80b'; }
|
|
270
273
|
|
|
271
274
|
.il-youtube::before {
|
|
272
|
-
|
|
275
|
+
content: '\e80c'; }
|
|
273
276
|
|
|
274
277
|
.il-behance::before {
|
|
275
|
-
|
|
278
|
+
content: '\e80d'; }
|
|
276
279
|
|
|
277
280
|
.il-instagram::before {
|
|
278
|
-
|
|
281
|
+
content: '\e80e'; }
|
|
279
282
|
|
|
280
283
|
.il-2x {
|
|
281
|
-
|
|
284
|
+
font-size: 200%; }
|
|
282
285
|
|
|
283
286
|
.il-3x {
|
|
284
|
-
|
|
287
|
+
font-size: 300%; }
|
|
285
288
|
|
|
286
289
|
.il-4x {
|
|
287
|
-
|
|
290
|
+
font-size: 400%; }
|
|
288
291
|
|
|
289
292
|
.il-spin {
|
|
290
293
|
-webkit-animation: spin 2s infinite linear;
|
|
291
294
|
animation: spin 2s infinite linear;
|
|
292
|
-
|
|
295
|
+
display: inline-block; }
|
|
293
296
|
|
|
294
297
|
@-webkit-keyframes spin {
|
|
295
298
|
0% {
|
|
296
299
|
-webkit-transform: rotate(0deg);
|
|
297
|
-
|
|
300
|
+
transform: rotate(0deg); }
|
|
298
301
|
100% {
|
|
299
302
|
-webkit-transform: rotate(359deg);
|
|
300
|
-
|
|
303
|
+
transform: rotate(359deg); } }
|
|
301
304
|
|
|
302
305
|
@keyframes spin {
|
|
303
306
|
0% {
|
|
304
307
|
-webkit-transform: rotate(0deg);
|
|
305
|
-
|
|
308
|
+
transform: rotate(0deg); }
|
|
306
309
|
100% {
|
|
307
310
|
-webkit-transform: rotate(359deg);
|
|
308
|
-
|
|
311
|
+
transform: rotate(359deg); } }
|
|
309
312
|
|
|
310
313
|
.il-flip-horizontal {
|
|
311
314
|
-webkit-transform: scale(-1, 1);
|
|
312
|
-
|
|
315
|
+
transform: scale(-1, 1); }
|
|
313
316
|
|
|
314
317
|
.il-flip-vertical {
|
|
315
318
|
-webkit-transform: scale(1, -1);
|
|
316
|
-
|
|
319
|
+
transform: scale(1, -1); }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: icalicons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hector Mg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|