formnestic 1.0.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.
- data/.document +5 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/.watchr +31 -0
- data/Gemfile +27 -0
- data/Gemfile.lock +133 -0
- data/MIT-LICENSE +20 -0
- data/README.markdown +126 -0
- data/Rakefile +44 -0
- data/VERSION +1 -0
- data/app/assets/.DS_Store +0 -0
- data/app/assets/javascripts/formnestic/formnestic.js +139 -0
- data/app/assets/stylesheets/formnestic/entypo.css.scss +327 -0
- data/app/assets/stylesheets/formnestic/entypo.eot +0 -0
- data/app/assets/stylesheets/formnestic/entypo.svg +296 -0
- data/app/assets/stylesheets/formnestic/entypo.ttf +0 -0
- data/app/assets/stylesheets/formnestic/entypo.woff +0 -0
- data/app/assets/stylesheets/formnestic/formnestic.css.scss +167 -0
- data/config/locales/formnestic.en.yml +8 -0
- data/formnestic.gemspec +112 -0
- data/lib/formnestic/form_builder/base_builder.rb +55 -0
- data/lib/formnestic/form_builder/list_form_builder.rb +30 -0
- data/lib/formnestic/form_builder/table_form_builder.rb +94 -0
- data/lib/formnestic/form_builder.rb +13 -0
- data/lib/formnestic/helpers/inputs_helper.rb +82 -0
- data/lib/formnestic/helpers.rb +9 -0
- data/lib/formnestic/inputs/base/labelling.rb +15 -0
- data/lib/formnestic/inputs/base/wrapping.rb +52 -0
- data/lib/formnestic/inputs/base.rb +12 -0
- data/lib/formnestic/inputs.rb +7 -0
- data/lib/formnestic.rb +72 -0
- data/lib/generators/formnestic/install_generator.rb +36 -0
- data/log/development.log +0 -0
- data/rwatchr +1 -0
- data/screenshots/list_form.png +0 -0
- data/screenshots/table_form.png +0 -0
- data/spec/helpers/nested_model_helper_spec.rb +277 -0
- data/spec/helpers/nested_model_list_helper_spec.rb +51 -0
- data/spec/inputs/boolean_input_spec.rb +223 -0
- data/spec/spec_helper.rb +553 -0
- data/spec/support/custom_macros.rb +528 -0
- data/spec/support/deferred_garbage_collection.rb +21 -0
- data/spec/support/deprecation.rb +6 -0
- data/spec/support/test_environment.rb +31 -0
- metadata +271 -0
@@ -0,0 +1,327 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'entypo';
|
3
|
+
src: url(font-path('formnestic/entypo.eot?44409643'));
|
4
|
+
src: url(font-path('formnestic/entypo.eot?44409643#iefix')) format('embedded-opentype'),
|
5
|
+
url(font-path('formnestic/entypo.woff?44409643')) format('woff'),
|
6
|
+
url(font-path('formnestic/entypo.ttf?44409643')) format('truetype'),
|
7
|
+
url(font-path('formnestic/entypo.svg?44409643#entypo')) format('svg');
|
8
|
+
font-weight: normal;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
|
12
|
+
[class^="icon-"]:before, [class*=" icon-"]:before {
|
13
|
+
font-family: "entypo";
|
14
|
+
font-style: normal;
|
15
|
+
font-weight: normal;
|
16
|
+
speak: none;
|
17
|
+
|
18
|
+
display: inline-block;
|
19
|
+
text-decoration: inherit;
|
20
|
+
width: 1em;
|
21
|
+
margin-right: .2em;
|
22
|
+
text-align: center;
|
23
|
+
/* opacity: .8; */
|
24
|
+
|
25
|
+
/* For safety - reset parent styles, that can break glyph codes*/
|
26
|
+
font-variant: normal;
|
27
|
+
text-transform: none;
|
28
|
+
|
29
|
+
/* fix buttons height, for twitter bootstrap */
|
30
|
+
line-height: 1em;
|
31
|
+
|
32
|
+
/* Animation center compensation - margins should be symmetric */
|
33
|
+
/* remove if not needed */
|
34
|
+
margin-left: .2em;
|
35
|
+
|
36
|
+
/* you can be more comfortable with increased icons size */
|
37
|
+
/* font-size: 120%; */
|
38
|
+
|
39
|
+
/* Uncomment for 3D effect */
|
40
|
+
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
41
|
+
}
|
42
|
+
|
43
|
+
.icon-tumblr-squared:before { content: '\e800'; } /* '' */
|
44
|
+
.icon-logo-db:before { content: '\e8d1'; } /* '' */
|
45
|
+
.icon-note-beamed:before { content: '\e812'; } /* '' */
|
46
|
+
.icon-music:before { content: '\e813'; } /* '' */
|
47
|
+
.icon-search:before { content: '\e814'; } /* '' */
|
48
|
+
.icon-flashlight:before { content: '\e815'; } /* '' */
|
49
|
+
.icon-mail:before { content: '\e816'; } /* '' */
|
50
|
+
.icon-heart:before { content: '\e817'; } /* '' */
|
51
|
+
.icon-heart-empty:before { content: '\e818'; } /* '' */
|
52
|
+
.icon-star:before { content: '\e819'; } /* '' */
|
53
|
+
.icon-star-empty:before { content: '\e81a'; } /* '' */
|
54
|
+
.icon-user:before { content: '\e81b'; } /* '' */
|
55
|
+
.icon-users:before { content: '\e81c'; } /* '' */
|
56
|
+
.icon-user-add:before { content: '\e81d'; } /* '' */
|
57
|
+
.icon-video:before { content: '\e81e'; } /* '' */
|
58
|
+
.icon-picture:before { content: '\e81f'; } /* '' */
|
59
|
+
.icon-camera:before { content: '\e820'; } /* '' */
|
60
|
+
.icon-layout:before { content: '\e821'; } /* '' */
|
61
|
+
.icon-menu:before { content: '\e822'; } /* '' */
|
62
|
+
.icon-check:before { content: '\e823'; } /* '' */
|
63
|
+
.icon-cancel:before { content: '\e824'; } /* '' */
|
64
|
+
.icon-cancel-circled:before { content: '\e825'; } /* '' */
|
65
|
+
.icon-cancel-squared:before { content: '\e826'; } /* '' */
|
66
|
+
.icon-plus:before { content: '\e827'; } /* '' */
|
67
|
+
.icon-plus-circled:before { content: '\e828'; } /* '' */
|
68
|
+
.icon-plus-squared:before { content: '\e829'; } /* '' */
|
69
|
+
.icon-minus:before { content: '\e82a'; } /* '' */
|
70
|
+
.icon-minus-circled:before { content: '\e82b'; } /* '' */
|
71
|
+
.icon-minus-squared:before { content: '\e82c'; } /* '' */
|
72
|
+
.icon-help:before { content: '\e82d'; } /* '' */
|
73
|
+
.icon-help-circled:before { content: '\e82e'; } /* '' */
|
74
|
+
.icon-info:before { content: '\e82f'; } /* '' */
|
75
|
+
.icon-info-circled:before { content: '\e830'; } /* '' */
|
76
|
+
.icon-back:before { content: '\e831'; } /* '' */
|
77
|
+
.icon-home:before { content: '\e832'; } /* '' */
|
78
|
+
.icon-link:before { content: '\e833'; } /* '' */
|
79
|
+
.icon-attach:before { content: '\e834'; } /* '' */
|
80
|
+
.icon-lock:before { content: '\e835'; } /* '' */
|
81
|
+
.icon-lock-open:before { content: '\e836'; } /* '' */
|
82
|
+
.icon-eye:before { content: '\e837'; } /* '' */
|
83
|
+
.icon-tag:before { content: '\e838'; } /* '' */
|
84
|
+
.icon-bookmark:before { content: '\e839'; } /* '' */
|
85
|
+
.icon-bookmarks:before { content: '\e83a'; } /* '' */
|
86
|
+
.icon-flag:before { content: '\e83b'; } /* '' */
|
87
|
+
.icon-thumbs-up:before { content: '\e83c'; } /* '' */
|
88
|
+
.icon-thumbs-down:before { content: '\e83d'; } /* '' */
|
89
|
+
.icon-download:before { content: '\e83e'; } /* '' */
|
90
|
+
.icon-upload:before { content: '\e83f'; } /* '' */
|
91
|
+
.icon-upload-cloud:before { content: '\e840'; } /* '' */
|
92
|
+
.icon-reply:before { content: '\e841'; } /* '' */
|
93
|
+
.icon-reply-all:before { content: '\e842'; } /* '' */
|
94
|
+
.icon-forward:before { content: '\e843'; } /* '' */
|
95
|
+
.icon-quote:before { content: '\e844'; } /* '' */
|
96
|
+
.icon-code:before { content: '\e845'; } /* '' */
|
97
|
+
.icon-export:before { content: '\e846'; } /* '' */
|
98
|
+
.icon-pencil:before { content: '\e847'; } /* '' */
|
99
|
+
.icon-feather:before { content: '\e848'; } /* '' */
|
100
|
+
.icon-print:before { content: '\e849'; } /* '' */
|
101
|
+
.icon-retweet:before { content: '\e84a'; } /* '' */
|
102
|
+
.icon-keyboard:before { content: '\e84b'; } /* '' */
|
103
|
+
.icon-comment:before { content: '\e84c'; } /* '' */
|
104
|
+
.icon-chat:before { content: '\e84d'; } /* '' */
|
105
|
+
.icon-bell:before { content: '\e84e'; } /* '' */
|
106
|
+
.icon-attention:before { content: '\e84f'; } /* '' */
|
107
|
+
.icon-alert:before { content: '\e850'; } /* '' */
|
108
|
+
.icon-vcard:before { content: '\e851'; } /* '' */
|
109
|
+
.icon-address:before { content: '\e852'; } /* '' */
|
110
|
+
.icon-location:before { content: '\e853'; } /* '' */
|
111
|
+
.icon-map:before { content: '\e854'; } /* '' */
|
112
|
+
.icon-direction:before { content: '\e855'; } /* '' */
|
113
|
+
.icon-compass:before { content: '\e856'; } /* '' */
|
114
|
+
.icon-cup:before { content: '\e857'; } /* '' */
|
115
|
+
.icon-trash:before { content: '\e858'; } /* '' */
|
116
|
+
.icon-doc:before { content: '\e859'; } /* '' */
|
117
|
+
.icon-docs:before { content: '\e85a'; } /* '' */
|
118
|
+
.icon-doc-landscape:before { content: '\e85b'; } /* '' */
|
119
|
+
.icon-doc-text:before { content: '\e85c'; } /* '' */
|
120
|
+
.icon-doc-text-inv:before { content: '\e85d'; } /* '' */
|
121
|
+
.icon-newspaper:before { content: '\e85e'; } /* '' */
|
122
|
+
.icon-book-open:before { content: '\e85f'; } /* '' */
|
123
|
+
.icon-book:before { content: '\e860'; } /* '' */
|
124
|
+
.icon-folder:before { content: '\e861'; } /* '' */
|
125
|
+
.icon-archive:before { content: '\e862'; } /* '' */
|
126
|
+
.icon-box:before { content: '\e863'; } /* '' */
|
127
|
+
.icon-rss:before { content: '\e864'; } /* '' */
|
128
|
+
.icon-phone:before { content: '\e865'; } /* '' */
|
129
|
+
.icon-cog:before { content: '\e866'; } /* '' */
|
130
|
+
.icon-tools:before { content: '\e867'; } /* '' */
|
131
|
+
.icon-share:before { content: '\e868'; } /* '' */
|
132
|
+
.icon-shareable:before { content: '\e869'; } /* '' */
|
133
|
+
.icon-basket:before { content: '\e86a'; } /* '' */
|
134
|
+
.icon-bag:before { content: '\e86b'; } /* '' */
|
135
|
+
.icon-calendar:before { content: '\e86c'; } /* '' */
|
136
|
+
.icon-login:before { content: '\e86d'; } /* '' */
|
137
|
+
.icon-logout:before { content: '\e86e'; } /* '' */
|
138
|
+
.icon-mic:before { content: '\e86f'; } /* '' */
|
139
|
+
.icon-mute:before { content: '\e870'; } /* '' */
|
140
|
+
.icon-sound:before { content: '\e871'; } /* '' */
|
141
|
+
.icon-volume:before { content: '\e872'; } /* '' */
|
142
|
+
.icon-clock:before { content: '\e873'; } /* '' */
|
143
|
+
.icon-hourglass:before { content: '\e874'; } /* '' */
|
144
|
+
.icon-lamp:before { content: '\e875'; } /* '' */
|
145
|
+
.icon-light-down:before { content: '\e876'; } /* '' */
|
146
|
+
.icon-light-up:before { content: '\e877'; } /* '' */
|
147
|
+
.icon-adjust:before { content: '\e878'; } /* '' */
|
148
|
+
.icon-block:before { content: '\e879'; } /* '' */
|
149
|
+
.icon-resize-full:before { content: '\e87a'; } /* '' */
|
150
|
+
.icon-resize-small:before { content: '\e87b'; } /* '' */
|
151
|
+
.icon-popup:before { content: '\e87c'; } /* '' */
|
152
|
+
.icon-publish:before { content: '\e87d'; } /* '' */
|
153
|
+
.icon-window:before { content: '\e87e'; } /* '' */
|
154
|
+
.icon-arrow-combo:before { content: '\e87f'; } /* '' */
|
155
|
+
.icon-down-circled:before { content: '\e880'; } /* '' */
|
156
|
+
.icon-left-circled:before { content: '\e881'; } /* '' */
|
157
|
+
.icon-right-circled:before { content: '\e882'; } /* '' */
|
158
|
+
.icon-up-circled:before { content: '\e883'; } /* '' */
|
159
|
+
.icon-down-open:before { content: '\e884'; } /* '' */
|
160
|
+
.icon-left-open:before { content: '\e885'; } /* '' */
|
161
|
+
.icon-right-open:before { content: '\e886'; } /* '' */
|
162
|
+
.icon-up-open:before { content: '\e887'; } /* '' */
|
163
|
+
.icon-down-open-mini:before { content: '\e888'; } /* '' */
|
164
|
+
.icon-left-open-mini:before { content: '\e889'; } /* '' */
|
165
|
+
.icon-right-open-mini:before { content: '\e88a'; } /* '' */
|
166
|
+
.icon-up-open-mini:before { content: '\e88b'; } /* '' */
|
167
|
+
.icon-down-open-big:before { content: '\e88c'; } /* '' */
|
168
|
+
.icon-left-open-big:before { content: '\e88d'; } /* '' */
|
169
|
+
.icon-right-open-big:before { content: '\e88e'; } /* '' */
|
170
|
+
.icon-up-open-big:before { content: '\e88f'; } /* '' */
|
171
|
+
.icon-down:before { content: '\e890'; } /* '' */
|
172
|
+
.icon-left:before { content: '\e891'; } /* '' */
|
173
|
+
.icon-right:before { content: '\e892'; } /* '' */
|
174
|
+
.icon-up:before { content: '\e893'; } /* '' */
|
175
|
+
.icon-down-dir:before { content: '\e894'; } /* '' */
|
176
|
+
.icon-left-dir:before { content: '\e895'; } /* '' */
|
177
|
+
.icon-right-dir:before { content: '\e896'; } /* '' */
|
178
|
+
.icon-up-dir:before { content: '\e897'; } /* '' */
|
179
|
+
.icon-down-bold:before { content: '\e898'; } /* '' */
|
180
|
+
.icon-left-bold:before { content: '\e899'; } /* '' */
|
181
|
+
.icon-right-bold:before { content: '\e89a'; } /* '' */
|
182
|
+
.icon-up-bold:before { content: '\e89b'; } /* '' */
|
183
|
+
.icon-down-thin:before { content: '\e89c'; } /* '' */
|
184
|
+
.icon-left-thin:before { content: '\e89d'; } /* '' */
|
185
|
+
.icon-note:before { content: '\e811'; } /* '' */
|
186
|
+
.icon-up-thin:before { content: '\e89f'; } /* '' */
|
187
|
+
.icon-ccw:before { content: '\e8a0'; } /* '' */
|
188
|
+
.icon-cw:before { content: '\e8a1'; } /* '' */
|
189
|
+
.icon-arrows-ccw:before { content: '\e8a2'; } /* '' */
|
190
|
+
.icon-level-down:before { content: '\e8a3'; } /* '' */
|
191
|
+
.icon-level-up:before { content: '\e8a4'; } /* '' */
|
192
|
+
.icon-shuffle:before { content: '\e8a5'; } /* '' */
|
193
|
+
.icon-loop:before { content: '\e8a6'; } /* '' */
|
194
|
+
.icon-switch:before { content: '\e8a7'; } /* '' */
|
195
|
+
.icon-play:before { content: '\e8a8'; } /* '' */
|
196
|
+
.icon-stop:before { content: '\e8a9'; } /* '' */
|
197
|
+
.icon-pause:before { content: '\e8aa'; } /* '' */
|
198
|
+
.icon-record:before { content: '\e8ab'; } /* '' */
|
199
|
+
.icon-to-end:before { content: '\e8ac'; } /* '' */
|
200
|
+
.icon-to-start:before { content: '\e8ad'; } /* '' */
|
201
|
+
.icon-fast-forward:before { content: '\e8ae'; } /* '' */
|
202
|
+
.icon-fast-backward:before { content: '\e8af'; } /* '' */
|
203
|
+
.icon-progress-0:before { content: '\e8b0'; } /* '' */
|
204
|
+
.icon-progress-1:before { content: '\e8b1'; } /* '' */
|
205
|
+
.icon-progress-2:before { content: '\e8b2'; } /* '' */
|
206
|
+
.icon-progress-3:before { content: '\e8b3'; } /* '' */
|
207
|
+
.icon-target:before { content: '\e8b4'; } /* '' */
|
208
|
+
.icon-palette:before { content: '\e8b5'; } /* '' */
|
209
|
+
.icon-list:before { content: '\e8b6'; } /* '' */
|
210
|
+
.icon-list-add:before { content: '\e8b7'; } /* '' */
|
211
|
+
.icon-signal:before { content: '\e8b8'; } /* '' */
|
212
|
+
.icon-trophy:before { content: '\e8b9'; } /* '' */
|
213
|
+
.icon-battery:before { content: '\e8ba'; } /* '' */
|
214
|
+
.icon-back-in-time:before { content: '\e8bb'; } /* '' */
|
215
|
+
.icon-monitor:before { content: '\e8bc'; } /* '' */
|
216
|
+
.icon-mobile:before { content: '\e8bd'; } /* '' */
|
217
|
+
.icon-network:before { content: '\e8be'; } /* '' */
|
218
|
+
.icon-cd:before { content: '\e8bf'; } /* '' */
|
219
|
+
.icon-inbox:before { content: '\e8c0'; } /* '' */
|
220
|
+
.icon-install:before { content: '\e8c1'; } /* '' */
|
221
|
+
.icon-globe:before { content: '\e8c2'; } /* '' */
|
222
|
+
.icon-cloud:before { content: '\e8c3'; } /* '' */
|
223
|
+
.icon-cloud-thunder:before { content: '\e8c4'; } /* '' */
|
224
|
+
.icon-flash:before { content: '\e801'; } /* '' */
|
225
|
+
.icon-moon:before { content: '\e802'; } /* '' */
|
226
|
+
.icon-flight:before { content: '\e803'; } /* '' */
|
227
|
+
.icon-paper-plane:before { content: '\e804'; } /* '' */
|
228
|
+
.icon-leaf:before { content: '\e805'; } /* '' */
|
229
|
+
.icon-lifebuoy:before { content: '\e8d2'; } /* '' */
|
230
|
+
.icon-mouse:before { content: '\e8d3'; } /* '' */
|
231
|
+
.icon-briefcase:before { content: '\e8d4'; } /* '' */
|
232
|
+
.icon-suitcase:before { content: '\e8d5'; } /* '' */
|
233
|
+
.icon-dot:before { content: '\e8d6'; } /* '' */
|
234
|
+
.icon-dot-2:before { content: '\e8d7'; } /* '' */
|
235
|
+
.icon-dot-3:before { content: '\e8d8'; } /* '' */
|
236
|
+
.icon-brush:before { content: '\e8d9'; } /* '' */
|
237
|
+
.icon-magnet:before { content: '\e8da'; } /* '' */
|
238
|
+
.icon-infinity:before { content: '\e8db'; } /* '' */
|
239
|
+
.icon-erase:before { content: '\e8dc'; } /* '' */
|
240
|
+
.icon-chart-pie:before { content: '\e8dd'; } /* '' */
|
241
|
+
.icon-chart-line:before { content: '\e8de'; } /* '' */
|
242
|
+
.icon-chart-bar:before { content: '\e8df'; } /* '' */
|
243
|
+
.icon-chart-area:before { content: '\e8e0'; } /* '' */
|
244
|
+
.icon-tape:before { content: '\e806'; } /* '' */
|
245
|
+
.icon-graduation-cap:before { content: '\e807'; } /* '' */
|
246
|
+
.icon-language:before { content: '\e808'; } /* '' */
|
247
|
+
.icon-ticket:before { content: '\e809'; } /* '' */
|
248
|
+
.icon-water:before { content: '\e80a'; } /* '' */
|
249
|
+
.icon-droplet:before { content: '\e8e1'; } /* '' */
|
250
|
+
.icon-air:before { content: '\e8e2'; } /* '' */
|
251
|
+
.icon-credit-card:before { content: '\e8e3'; } /* '' */
|
252
|
+
.icon-floppy:before { content: '\e8e4'; } /* '' */
|
253
|
+
.icon-clipboard:before { content: '\e8e5'; } /* '' */
|
254
|
+
.icon-megaphone:before { content: '\e8e6'; } /* '' */
|
255
|
+
.icon-database:before { content: '\e8e7'; } /* '' */
|
256
|
+
.icon-drive:before { content: '\e8e8'; } /* '' */
|
257
|
+
.icon-bucket:before { content: '\e8e9'; } /* '' */
|
258
|
+
.icon-thermometer:before { content: '\e8ea'; } /* '' */
|
259
|
+
.icon-key:before { content: '\e8eb'; } /* '' */
|
260
|
+
.icon-flow-cascade:before { content: '\e8ec'; } /* '' */
|
261
|
+
.icon-flow-branch:before { content: '\e8ed'; } /* '' */
|
262
|
+
.icon-flow-tree:before { content: '\e8ee'; } /* '' */
|
263
|
+
.icon-flow-line:before { content: '\e8ef'; } /* '' */
|
264
|
+
.icon-flow-parallel:before { content: '\e80b'; } /* '' */
|
265
|
+
.icon-rocket:before { content: '\e80c'; } /* '' */
|
266
|
+
.icon-gauge:before { content: '\e80d'; } /* '' */
|
267
|
+
.icon-traffic-cone:before { content: '\e80e'; } /* '' */
|
268
|
+
.icon-cc:before { content: '\e80f'; } /* '' */
|
269
|
+
.icon-cc-by:before { content: '\e8f0'; } /* '' */
|
270
|
+
.icon-cc-nc:before { content: '\e8f1'; } /* '' */
|
271
|
+
.icon-cc-nc-eu:before { content: '\e8f2'; } /* '' */
|
272
|
+
.icon-cc-nc-jp:before { content: '\e8f3'; } /* '' */
|
273
|
+
.icon-cc-sa:before { content: '\e8f4'; } /* '' */
|
274
|
+
.icon-cc-nd:before { content: '\e8f5'; } /* '' */
|
275
|
+
.icon-cc-pd:before { content: '\e8f6'; } /* '' */
|
276
|
+
.icon-cc-zero:before { content: '\e8f7'; } /* '' */
|
277
|
+
.icon-cc-share:before { content: '\e8f8'; } /* '' */
|
278
|
+
.icon-cc-remix:before { content: '\e8f9'; } /* '' */
|
279
|
+
.icon-github:before { content: '\e8fa'; } /* '' */
|
280
|
+
.icon-github-circled:before { content: '\e8fb'; } /* '' */
|
281
|
+
.icon-flickr:before { content: '\e8fc'; } /* '' */
|
282
|
+
.icon-flickr-circled:before { content: '\e8fd'; } /* '' */
|
283
|
+
.icon-vimeo:before { content: '\e8fe'; } /* '' */
|
284
|
+
.icon-vimeo-circled:before { content: '\e810'; } /* '' */
|
285
|
+
.icon-twitter:before { content: '\e8c5'; } /* '' */
|
286
|
+
.icon-twitter-circled:before { content: '\e8c6'; } /* '' */
|
287
|
+
.icon-facebook:before { content: '\e8c7'; } /* '' */
|
288
|
+
.icon-facebook-circled:before { content: '\e8c8'; } /* '' */
|
289
|
+
.icon-facebook-squared:before { content: '\e8ff'; } /* '' */
|
290
|
+
.icon-gplus:before { content: '\e900'; } /* '' */
|
291
|
+
.icon-gplus-circled:before { content: '\e901'; } /* '' */
|
292
|
+
.icon-pinterest:before { content: '\e902'; } /* '' */
|
293
|
+
.icon-pinterest-circled:before { content: '\e903'; } /* '' */
|
294
|
+
.icon-tumblr:before { content: '\e904'; } /* '' */
|
295
|
+
.icon-tumblr-circled:before { content: '\e905'; } /* '' */
|
296
|
+
.icon-linkedin:before { content: '\e906'; } /* '' */
|
297
|
+
.icon-linkedin-circled:before { content: '\e907'; } /* '' */
|
298
|
+
.icon-dribbble:before { content: '\e908'; } /* '' */
|
299
|
+
.icon-dribbble-circled:before { content: '\e909'; } /* '' */
|
300
|
+
.icon-stumbleupon:before { content: '\e90a'; } /* '' */
|
301
|
+
.icon-stumbleupon-circled:before { content: '\e90b'; } /* '' */
|
302
|
+
.icon-lastfm:before { content: '\e90c'; } /* '' */
|
303
|
+
.icon-lastfm-circled:before { content: '\e90d'; } /* '' */
|
304
|
+
.icon-rdio:before { content: '\e8c9'; } /* '' */
|
305
|
+
.icon-rdio-circled:before { content: '\e8ca'; } /* '' */
|
306
|
+
.icon-spotify:before { content: '\e8cb'; } /* '' */
|
307
|
+
.icon-spotify-circled:before { content: '\e8cc'; } /* '' */
|
308
|
+
.icon-qq:before { content: '\e8cd'; } /* '' */
|
309
|
+
.icon-instagram:before { content: '\e90e'; } /* '' */
|
310
|
+
.icon-dropbox:before { content: '\e90f'; } /* '' */
|
311
|
+
.icon-evernote:before { content: '\e910'; } /* '' */
|
312
|
+
.icon-flattr:before { content: '\e911'; } /* '' */
|
313
|
+
.icon-skype:before { content: '\e912'; } /* '' */
|
314
|
+
.icon-skype-circled:before { content: '\e913'; } /* '' */
|
315
|
+
.icon-renren:before { content: '\e914'; } /* '' */
|
316
|
+
.icon-sina-weibo:before { content: '\e915'; } /* '' */
|
317
|
+
.icon-paypal:before { content: '\e916'; } /* '' */
|
318
|
+
.icon-picasa:before { content: '\e917'; } /* '' */
|
319
|
+
.icon-soundcloud:before { content: '\e918'; } /* '' */
|
320
|
+
.icon-mixi:before { content: '\e919'; } /* '' */
|
321
|
+
.icon-behance:before { content: '\e91a'; } /* '' */
|
322
|
+
.icon-google-circles:before { content: '\e91b'; } /* '' */
|
323
|
+
.icon-vkontakte:before { content: '\e91c'; } /* '' */
|
324
|
+
.icon-smashing:before { content: '\e8ce'; } /* '' */
|
325
|
+
.icon-sweden:before { content: '\e8cf'; } /* '' */
|
326
|
+
.icon-db-shape:before { content: '\e8d0'; } /* '' */
|
327
|
+
.icon-right-thin:before { content: '\e89e'; } /* '' */
|
Binary file
|