Social Icons - Version 1.5.0

Version Description

  • 08/12/2016 =
  • Fix - Blogspot icon to blog on Blogger.com
  • Fix - Breakage of first social icon name found within a loop.
  • Fix - Fontawesome pseudo class selectors applied in sidebar area.
  • Tweak - Include dirname before including files.
  • Tweak - Social icons repeater field for siteorigin panel compat.
Download this release

Release Info

Developer ThemeGrill
Plugin Icon 128x128 Social Icons
Version 1.5.0
Comparing to
See all releases

Code changes from version 1.4.1 to 1.5.0

.stylelintrc ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "rules": {
3
+ "indentation": "tab",
4
+ "color-hex-case": "lower",
5
+ "color-no-invalid-hex": true,
6
+
7
+ "function-calc-no-unspaced-operator": true,
8
+ "function-comma-space-after": "always-single-line",
9
+ "function-comma-space-before": "never",
10
+ "function-name-case": "lower",
11
+ "function-url-quotes": "always",
12
+ "function-whitespace-after": "always",
13
+
14
+ "number-leading-zero": "always",
15
+ "number-no-trailing-zeros": true,
16
+ "length-zero-no-unit": true,
17
+
18
+ "string-no-newline": true,
19
+ "string-quotes": "single",
20
+
21
+ "unit-case": "lower",
22
+ "unit-no-unknown": true,
23
+ "unit-whitelist": ["px", "%", "deg", "ms", "em", "vh", "vw", "rem", "s", "ex", "pt", "cm"],
24
+
25
+ "value-list-comma-space-after": "always-single-line",
26
+ "value-list-comma-space-before": "never",
27
+
28
+ "shorthand-property-no-redundant-values": true,
29
+
30
+ "property-case": "lower",
31
+
32
+ "declaration-block-no-duplicate-properties": [true, { "severity": "warning" } ],
33
+ "declaration-block-no-ignored-properties": [true, { "severity": "warning" } ],
34
+ "declaration-block-trailing-semicolon": "always",
35
+ "declaration-block-single-line-max-declarations": 0,
36
+ "declaration-block-semicolon-space-before": "never",
37
+ "declaration-block-semicolon-space-after": "always-single-line",
38
+ "declaration-block-semicolon-newline-before": "never-multi-line",
39
+ "declaration-block-semicolon-newline-after": "always-multi-line",
40
+
41
+ "block-closing-brace-newline-after": "always",
42
+ "block-closing-brace-newline-before": "always-multi-line",
43
+ "block-no-empty": true,
44
+ "block-opening-brace-newline-after": "always-multi-line",
45
+ "block-opening-brace-space-before": "always",
46
+
47
+ "selector-attribute-brackets-space-inside": "never",
48
+ "selector-attribute-operator-space-after": "never",
49
+ "selector-attribute-operator-space-before": "never",
50
+ "selector-combinator-space-after": "always",
51
+ "selector-combinator-space-before": "always",
52
+ "selector-pseudo-class-case": "lower",
53
+ "selector-pseudo-class-parentheses-space-inside": "always",
54
+ "selector-pseudo-element-case": "lower",
55
+ "selector-pseudo-element-colon-notation": "double",
56
+ "selector-pseudo-element-no-unknown": true,
57
+ "selector-type-case": "lower",
58
+ }
59
+ }
assets/css/_mixins.scss CHANGED
@@ -10,7 +10,7 @@
10
  width: 1em;
11
  }
12
 
13
- @mixin icon_dashicons( $glyph: "\f333" ) {
14
  font-family: 'Dashicons';
15
  speak: none;
16
  font-weight: normal;
@@ -29,7 +29,7 @@
29
  content: $glyph;
30
  }
31
 
32
- @mixin iconbeforedashicons( $glyph: "\f333" ) {
33
  font-family: 'Dashicons';
34
  speak: none;
35
  font-weight: normal;
@@ -37,29 +37,28 @@
37
  text-transform: none;
38
  line-height: 1;
39
  -webkit-font-smoothing: antialiased;
40
- margin-right: .618em;
41
  content: $glyph;
42
  text-decoration: none;
43
  }
44
 
45
  @mixin loader() {
46
- &:before {
47
  height: 1em;
48
  width: 1em;
49
- display: block;
50
  position: absolute;
51
  top: 50%;
52
  left: 50%;
53
- margin-left: -.5em;
54
- margin-top: -.5em;
55
  display: block;
56
- content: "";
57
  @include animation( spin 1s ease-in-out infinite );
58
- background: url(../images/icons/loader.svg) center center;
59
  background-size: cover;
60
  line-height: 1;
61
  text-align: center;
62
  font-size: 2em;
63
- color: rgba(#000,0.75);
64
  }
65
  }
10
  width: 1em;
11
  }
12
 
13
+ @mixin icon_dashicons( $glyph: '\f333' ) {
14
  font-family: 'Dashicons';
15
  speak: none;
16
  font-weight: normal;
29
  content: $glyph;
30
  }
31
 
32
+ @mixin iconbeforedashicons( $glyph: '\f333' ) {
33
  font-family: 'Dashicons';
34
  speak: none;
35
  font-weight: normal;
37
  text-transform: none;
38
  line-height: 1;
39
  -webkit-font-smoothing: antialiased;
40
+ margin-right: 0.618em;
41
  content: $glyph;
42
  text-decoration: none;
43
  }
44
 
45
  @mixin loader() {
46
+ &::before {
47
  height: 1em;
48
  width: 1em;
 
49
  position: absolute;
50
  top: 50%;
51
  left: 50%;
52
+ margin-left: -0.5em;
53
+ margin-top: -0.5em;
54
  display: block;
55
+ content: '';
56
  @include animation( spin 1s ease-in-out infinite );
57
+ background: url( '../images/icons/loader.svg' ) center center;
58
  background-size: cover;
59
  line-height: 1;
60
  text-align: center;
61
  font-size: 2em;
62
+ color: rgba( #000, 0.75 );
63
  }
64
  }
assets/css/_socicon.scss CHANGED
@@ -6,7 +6,7 @@
6
  /**
7
  * Imports
8
  */
9
- @import "variables";
10
 
11
  /**
12
  * Socicon fonts
@@ -25,8 +25,8 @@
25
  /**
26
  * Styling begins
27
  */
28
- [data-icon]:before {
29
- font-family: "socicon" !important;
30
  content: attr(data-icon);
31
  font-style: normal !important;
32
  font-weight: normal !important;
@@ -38,9 +38,9 @@
38
  -moz-osx-font-smoothing: grayscale;
39
  }
40
 
41
- [class^="socicon-"]:before,
42
- [class*=" socicon-"]:before {
43
- font-family: "socicon" !important;
44
  font-style: normal !important;
45
  font-weight: normal !important;
46
  font-variant: normal !important;
@@ -67,8 +67,8 @@
67
  color: $icon-modelmayhem;
68
  background-color: $icon-modelmayhem;
69
 
70
- &:before {
71
- content: "\e000";
72
  }
73
  }
74
 
@@ -76,8 +76,8 @@
76
  color: $icon-mixcloud;
77
  background-color: $icon-mixcloud;
78
 
79
- &:before {
80
- content: "\e001";
81
  }
82
  }
83
 
@@ -85,8 +85,8 @@
85
  color: $icon-drupal;
86
  background-color: $icon-drupal;
87
 
88
- &:before {
89
- content: "\e002";
90
  }
91
  }
92
 
@@ -94,8 +94,8 @@
94
  color: $icon-swarm;
95
  background-color: $icon-swarm;
96
 
97
- &:before {
98
- content: "\e003";
99
  }
100
  }
101
 
@@ -103,8 +103,8 @@
103
  color: $icon-istock;
104
  background-color: $icon-istock;
105
 
106
- &:before {
107
- content: "\e004";
108
  }
109
  }
110
 
@@ -112,8 +112,8 @@
112
  color: $icon-yammer;
113
  background-color: $icon-yammer;
114
 
115
- &:before {
116
- content: "\e005";
117
  }
118
  }
119
 
@@ -121,8 +121,8 @@
121
  color: $icon-ello;
122
  background-color: $icon-ello;
123
 
124
- &:before {
125
- content: "\e006";
126
  }
127
  }
128
 
@@ -130,8 +130,8 @@
130
  color: $icon-stackoverflow;
131
  background-color: $icon-stackoverflow;
132
 
133
- &:before {
134
- content: "\e007";
135
  }
136
  }
137
 
@@ -139,8 +139,8 @@
139
  color: $icon-persona;
140
  background-color: $icon-persona;
141
 
142
- &:before {
143
- content: "\e008";
144
  }
145
  }
146
 
@@ -148,8 +148,8 @@
148
  color: $icon-triplej;
149
  background-color: $icon-triplej;
150
 
151
- &:before {
152
- content: "\e009";
153
  }
154
  }
155
 
@@ -157,8 +157,8 @@
157
  color: $icon-houzz;
158
  background-color: $icon-houzz;
159
 
160
- &:before {
161
- content: "\e00a";
162
  }
163
  }
164
 
@@ -166,8 +166,8 @@
166
  color: $icon-rss;
167
  background-color: $icon-rss;
168
 
169
- &:before {
170
- content: "\e00b";
171
  }
172
  }
173
 
@@ -175,8 +175,8 @@
175
  color: $icon-paypal;
176
  background-color: $icon-paypal;
177
 
178
- &:before {
179
- content: "\e00c";
180
  }
181
  }
182
 
@@ -184,8 +184,8 @@
184
  color: $icon-odnoklassniki;
185
  background-color: $icon-odnoklassniki;
186
 
187
- &:before {
188
- content: "\e00d";
189
  }
190
  }
191
 
@@ -193,8 +193,8 @@
193
  color: $icon-airbnb;
194
  background-color: $icon-airbnb;
195
 
196
- &:before {
197
- content: "\e00e";
198
  }
199
  }
200
 
@@ -202,8 +202,8 @@
202
  color: $icon-periscope;
203
  background-color: $icon-periscope;
204
 
205
- &:before {
206
- content: "\e00f";
207
  }
208
  }
209
 
@@ -211,8 +211,8 @@
211
  color: $icon-outlook;
212
  background-color: $icon-outlook;
213
 
214
- &:before {
215
- content: "\e010";
216
  }
217
  }
218
 
@@ -220,8 +220,8 @@
220
  color: $icon-coderwall;
221
  background-color: $icon-coderwall;
222
 
223
- &:before {
224
- content: "\e011";
225
  }
226
  }
227
 
@@ -229,8 +229,8 @@
229
  color: $icon-tripadvisor;
230
  background-color: $icon-tripadvisor;
231
 
232
- &:before {
233
- content: "\e012";
234
  }
235
  }
236
 
@@ -238,8 +238,8 @@
238
  color: $icon-appnet;
239
  background-color: $icon-appnet;
240
 
241
- &:before {
242
- content: "\e013";
243
  }
244
  }
245
 
@@ -247,8 +247,8 @@
247
  color: $icon-goodreads;
248
  background-color: $icon-goodreads;
249
 
250
- &:before {
251
- content: "\e014";
252
  }
253
  }
254
 
@@ -256,8 +256,8 @@
256
  color: $icon-tripit;
257
  background-color: $icon-tripit;
258
 
259
- &:before {
260
- content: "\e015";
261
  }
262
  }
263
 
@@ -265,8 +265,8 @@
265
  color: $icon-lanyrd;
266
  background-color: $icon-lanyrd;
267
 
268
- &:before {
269
- content: "\e016";
270
  }
271
  }
272
 
@@ -274,8 +274,8 @@
274
  color: $icon-slideshare;
275
  background-color: $icon-slideshare;
276
 
277
- &:before {
278
- content: "\e017";
279
  }
280
  }
281
 
@@ -283,8 +283,8 @@
283
  color: $icon-buffer;
284
  background-color: $icon-buffer;
285
 
286
- &:before {
287
- content: "\e018";
288
  }
289
  }
290
 
@@ -292,8 +292,8 @@
292
  color: $icon-disqus;
293
  background-color: $icon-disqus;
294
 
295
- &:before {
296
- content: "\e019";
297
  }
298
  }
299
 
@@ -301,8 +301,8 @@
301
  color: $icon-vkontakte;
302
  background-color: $icon-vkontakte;
303
 
304
- &:before {
305
- content: "\e01a";
306
  }
307
  }
308
 
@@ -310,8 +310,8 @@
310
  color: $icon-whatsapp;
311
  background-color: $icon-whatsapp;
312
 
313
- &:before {
314
- content: "\e01b";
315
  }
316
  }
317
 
@@ -319,8 +319,8 @@
319
  color: $icon-patreon;
320
  background-color: $icon-patreon;
321
 
322
- &:before {
323
- content: "\e01c";
324
  }
325
  }
326
 
@@ -328,8 +328,8 @@
328
  color: $icon-storehouse;
329
  background-color: $icon-storehouse;
330
 
331
- &:before {
332
- content: "\e01d";
333
  }
334
  }
335
 
@@ -337,8 +337,8 @@
337
  color: $icon-pocket;
338
  background-color: $icon-pocket;
339
 
340
- &:before {
341
- content: "\e01e";
342
  }
343
  }
344
 
@@ -346,8 +346,8 @@
346
  color: $icon-mail;
347
  background-color: $icon-mail;
348
 
349
- &:before {
350
- content: "\e01f";
351
  }
352
  }
353
 
@@ -355,8 +355,8 @@
355
  color: $icon-blogger;
356
  background-color: $icon-blogger;
357
 
358
- &:before {
359
- content: "\e020";
360
  }
361
  }
362
 
@@ -364,8 +364,8 @@
364
  color: $icon-technorati;
365
  background-color: $icon-technorati;
366
 
367
- &:before {
368
- content: "\e021";
369
  }
370
  }
371
 
@@ -373,8 +373,8 @@
373
  color: $icon-reddit;
374
  background-color: $icon-reddit;
375
 
376
- &:before {
377
- content: "\e022";
378
  }
379
  }
380
 
@@ -382,8 +382,8 @@
382
  color: $icon-dribbble;
383
  background-color: $icon-dribbble;
384
 
385
- &:before {
386
- content: "\e023";
387
  }
388
  }
389
 
@@ -391,8 +391,8 @@
391
  color: $icon-stumbleupon;
392
  background-color: $icon-stumbleupon;
393
 
394
- &:before {
395
- content: "\e024";
396
  }
397
  }
398
 
@@ -400,8 +400,8 @@
400
  color: $icon-digg;
401
  background-color: $icon-digg;
402
 
403
- &:before {
404
- content: "\e025";
405
  }
406
  }
407
 
@@ -409,8 +409,8 @@
409
  color: $icon-envato;
410
  background-color: $icon-envato;
411
 
412
- &:before {
413
- content: "\e026";
414
  }
415
  }
416
 
@@ -418,8 +418,8 @@
418
  color: $icon-behance;
419
  background-color: $icon-behance;
420
 
421
- &:before {
422
- content: "\e027";
423
  }
424
  }
425
 
@@ -427,8 +427,8 @@
427
  color: $icon-delicious;
428
  background-color: $icon-delicious;
429
 
430
- &:before {
431
- content: "\e028";
432
  }
433
  }
434
 
@@ -436,8 +436,8 @@
436
  color: $icon-deviantart;
437
  background-color: $icon-deviantart;
438
 
439
- &:before {
440
- content: "\e029";
441
  }
442
  }
443
 
@@ -445,8 +445,8 @@
445
  color: $icon-forrst;
446
  background-color: $icon-forrst;
447
 
448
- &:before {
449
- content: "\e02a";
450
  }
451
  }
452
 
@@ -454,8 +454,8 @@
454
  color: $icon-play;
455
  background-color: $icon-play;
456
 
457
- &:before {
458
- content: "\e02b";
459
  }
460
  }
461
 
@@ -463,8 +463,8 @@
463
  color: $icon-zerply;
464
  background-color: $icon-zerply;
465
 
466
- &:before {
467
- content: "\e02c";
468
  }
469
  }
470
 
@@ -472,8 +472,8 @@
472
  color: $icon-wikipedia;
473
  background-color: $icon-wikipedia;
474
 
475
- &:before {
476
- content: "\e02d";
477
  }
478
  }
479
 
@@ -481,8 +481,8 @@
481
  color: $icon-apple;
482
  background-color: $icon-apple;
483
 
484
- &:before {
485
- content: "\e02e";
486
  }
487
  }
488
 
@@ -490,8 +490,8 @@
490
  color: $icon-flattr;
491
  background-color: $icon-flattr;
492
 
493
- &:before {
494
- content: "\e02f";
495
  }
496
  }
497
 
@@ -499,8 +499,8 @@
499
  color: $icon-github;
500
  background-color: $icon-github;
501
 
502
- &:before {
503
- content: "\e030";
504
  }
505
  }
506
 
@@ -508,8 +508,8 @@
508
  color: $icon-renren;
509
  background-color: $icon-renren;
510
 
511
- &:before {
512
- content: "\e031";
513
  }
514
  }
515
 
@@ -517,8 +517,8 @@
517
  color: $icon-friendfeed;
518
  background-color: $icon-friendfeed;
519
 
520
- &:before {
521
- content: "\e032";
522
  }
523
  }
524
 
@@ -526,8 +526,8 @@
526
  color: $icon-newsvine;
527
  background-color: $icon-newsvine;
528
 
529
- &:before {
530
- content: "\e033";
531
  }
532
  }
533
 
@@ -535,8 +535,8 @@
535
  color: $icon-identica;
536
  background-color: $icon-identica;
537
 
538
- &:before {
539
- content: "\e034";
540
  }
541
  }
542
 
@@ -544,8 +544,8 @@
544
  color: $icon-bebo;
545
  background-color: $icon-bebo;
546
 
547
- &:before {
548
- content: "\e035";
549
  }
550
  }
551
 
@@ -553,8 +553,8 @@
553
  color: $icon-zynga;
554
  background-color: $icon-zynga;
555
 
556
- &:before {
557
- content: "\e036";
558
  }
559
  }
560
 
@@ -562,8 +562,8 @@
562
  color: $icon-steam;
563
  background-color: $icon-steam;
564
 
565
- &:before {
566
- content: "\e037";
567
  }
568
  }
569
 
@@ -571,8 +571,8 @@
571
  color: $icon-xbox;
572
  background-color: $icon-xbox;
573
 
574
- &:before {
575
- content: "\e038";
576
  }
577
  }
578
 
@@ -580,8 +580,8 @@
580
  color: $icon-windows;
581
  background-color: $icon-windows;
582
 
583
- &:before {
584
- content: "\e039";
585
  }
586
  }
587
 
@@ -589,8 +589,8 @@
589
  color: $icon-qq;
590
  background-color: $icon-qq;
591
 
592
- &:before {
593
- content: "\e03a";
594
  }
595
  }
596
 
@@ -598,8 +598,8 @@
598
  color: $icon-douban;
599
  background-color: $icon-douban;
600
 
601
- &:before {
602
- content: "\e03b";
603
  }
604
  }
605
 
@@ -607,8 +607,8 @@
607
  color: $icon-meetup;
608
  background-color: $icon-meetup;
609
 
610
- &:before {
611
- content: "\e03c";
612
  }
613
  }
614
 
@@ -616,8 +616,8 @@
616
  color: $icon-playstation;
617
  background-color: $icon-playstation;
618
 
619
- &:before {
620
- content: "\e03d";
621
  }
622
  }
623
 
@@ -625,8 +625,8 @@
625
  color: $icon-android;
626
  background-color: $icon-android;
627
 
628
- &:before {
629
- content: "\e03e";
630
  }
631
  }
632
 
@@ -634,8 +634,8 @@
634
  color: $icon-snapchat;
635
  background-color: $icon-snapchat;
636
 
637
- &:before {
638
- content: "\e03f";
639
  }
640
  }
641
 
@@ -643,8 +643,8 @@
643
  color: $icon-twitter;
644
  background-color: $icon-twitter;
645
 
646
- &:before {
647
- content: "\e040";
648
  }
649
  }
650
 
@@ -652,8 +652,8 @@
652
  color: $icon-facebook;
653
  background-color: $icon-facebook;
654
 
655
- &:before {
656
- content: "\e041";
657
  }
658
  }
659
 
@@ -661,8 +661,8 @@
661
  color: $icon-googleplus;
662
  background-color: $icon-googleplus;
663
 
664
- &:before {
665
- content: "\e042";
666
  }
667
  }
668
 
@@ -670,8 +670,8 @@
670
  color: $icon-pinterest;
671
  background-color: $icon-pinterest;
672
 
673
- &:before {
674
- content: "\e043";
675
  }
676
  }
677
 
@@ -679,8 +679,8 @@
679
  color: $icon-foursquare;
680
  background-color: $icon-foursquare;
681
 
682
- &:before {
683
- content: "\e044";
684
  }
685
  }
686
 
@@ -688,8 +688,8 @@
688
  color: $icon-yahoo;
689
  background-color: $icon-yahoo;
690
 
691
- &:before {
692
- content: "\e045";
693
  }
694
  }
695
 
@@ -697,8 +697,8 @@
697
  color: $icon-skype;
698
  background-color: $icon-skype;
699
 
700
- &:before {
701
- content: "\e046";
702
  }
703
  }
704
 
@@ -706,8 +706,8 @@
706
  color: $icon-yelp;
707
  background-color: $icon-yelp;
708
 
709
- &:before {
710
- content: "\e047";
711
  }
712
  }
713
 
@@ -715,8 +715,8 @@
715
  color: $icon-feedburner;
716
  background-color: $icon-feedburner;
717
 
718
- &:before {
719
- content: "\e048";
720
  }
721
  }
722
 
@@ -724,8 +724,8 @@
724
  color: $icon-linkedin;
725
  background-color: $icon-linkedin;
726
 
727
- &:before {
728
- content: "\e049";
729
  }
730
  }
731
 
@@ -733,8 +733,8 @@
733
  color: $icon-viadeo;
734
  background-color: $icon-viadeo;
735
 
736
- &:before {
737
- content: "\e04a";
738
  }
739
  }
740
 
@@ -742,8 +742,8 @@
742
  color: $icon-xing;
743
  background-color: $icon-xing;
744
 
745
- &:before {
746
- content: "\e04b";
747
  }
748
  }
749
 
@@ -751,8 +751,8 @@
751
  color: $icon-myspace;
752
  background-color: $icon-myspace;
753
 
754
- &:before {
755
- content: "\e04c";
756
  }
757
  }
758
 
@@ -760,8 +760,8 @@
760
  color: $icon-soundcloud;
761
  background-color: $icon-soundcloud;
762
 
763
- &:before {
764
- content: "\e04d";
765
  }
766
  }
767
 
@@ -769,8 +769,8 @@
769
  color: $icon-spotify;
770
  background-color: $icon-spotify;
771
 
772
- &:before {
773
- content: "\e04e";
774
  }
775
  }
776
 
@@ -778,8 +778,8 @@
778
  color: $icon-grooveshark;
779
  background-color: $icon-grooveshark;
780
 
781
- &:before {
782
- content: "\e04f";
783
  }
784
  }
785
 
@@ -787,8 +787,8 @@
787
  color: $icon-lastfm;
788
  background-color: $icon-lastfm;
789
 
790
- &:before {
791
- content: "\e050";
792
  }
793
  }
794
 
@@ -796,8 +796,8 @@
796
  color: $icon-youtube;
797
  background-color: $icon-youtube;
798
 
799
- &:before {
800
- content: "\e051";
801
  }
802
  }
803
 
@@ -805,8 +805,8 @@
805
  color: $icon-vimeo;
806
  background-color: $icon-vimeo;
807
 
808
- &:before {
809
- content: "\e052";
810
  }
811
  }
812
 
@@ -814,8 +814,8 @@
814
  color: $icon-dailymotion;
815
  background-color: $icon-dailymotion;
816
 
817
- &:before {
818
- content: "\e053";
819
  }
820
  }
821
 
@@ -823,8 +823,8 @@
823
  color: $icon-vine;
824
  background-color: $icon-vine;
825
 
826
- &:before {
827
- content: "\e054";
828
  }
829
  }
830
 
@@ -832,8 +832,8 @@
832
  color: $icon-flickr;
833
  background-color: $icon-flickr;
834
 
835
- &:before {
836
- content: "\e055";
837
  }
838
  }
839
 
@@ -841,8 +841,8 @@
841
  color: $icon-500px;
842
  background-color: $icon-500px;
843
 
844
- &:before {
845
- content: "\e056";
846
  }
847
  }
848
 
@@ -850,8 +850,8 @@
850
  color: $icon-instagram;
851
  background-color: $icon-instagram;
852
 
853
- &:before {
854
- content: "\e057";
855
  }
856
  }
857
 
@@ -859,8 +859,8 @@
859
  color: $icon-wordpress;
860
  background-color: $icon-wordpress;
861
 
862
- &:before {
863
- content: "\e058";
864
  }
865
  }
866
 
@@ -868,8 +868,8 @@
868
  color: $icon-tumblr;
869
  background-color: $icon-tumblr;
870
 
871
- &:before {
872
- content: "\e059";
873
  }
874
  }
875
 
@@ -877,8 +877,8 @@
877
  color: $icon-twitch;
878
  background-color: $icon-twitch;
879
 
880
- &:before {
881
- content: "\e05a";
882
  }
883
  }
884
 
@@ -886,8 +886,8 @@
886
  color: $icon-8tracks;
887
  background-color: $icon-8tracks;
888
 
889
- &:before {
890
- content: "\e05b";
891
  }
892
  }
893
 
@@ -895,8 +895,8 @@
895
  color: $icon-amazon;
896
  background-color: $icon-amazon;
897
 
898
- &:before {
899
- content: "\e05c";
900
  }
901
  }
902
 
@@ -904,8 +904,8 @@
904
  color: $icon-icq;
905
  background-color: $icon-icq;
906
 
907
- &:before {
908
- content: "\e05d";
909
  }
910
  }
911
 
@@ -913,8 +913,8 @@
913
  color: $icon-smugmug;
914
  background-color: $icon-smugmug;
915
 
916
- &:before {
917
- content: "\e05e";
918
  }
919
  }
920
 
@@ -922,8 +922,8 @@
922
  color: $icon-ravelry;
923
  background-color: $icon-ravelry;
924
 
925
- &:before {
926
- content: "\e05f";
927
  }
928
  }
929
 
@@ -931,8 +931,8 @@
931
  color: $icon-weibo;
932
  background-color: $icon-weibo;
933
 
934
- &:before {
935
- content: "\e060";
936
  }
937
  }
938
 
@@ -940,8 +940,8 @@
940
  color: $icon-baidu;
941
  background-color: $icon-baidu;
942
 
943
- &:before {
944
- content: "\e061";
945
  }
946
  }
947
 
@@ -949,8 +949,8 @@
949
  color: $icon-angellist;
950
  background-color: $icon-angellist;
951
 
952
- &:before {
953
- content: "\e062";
954
  }
955
  }
956
 
@@ -958,8 +958,8 @@
958
  color: $icon-ebay;
959
  background-color: $icon-ebay;
960
 
961
- &:before {
962
- content: "\e063";
963
  }
964
  }
965
 
@@ -967,8 +967,8 @@
967
  color: $icon-imdb;
968
  background-color: $icon-imdb;
969
 
970
- &:before {
971
- content: "\e064";
972
  }
973
  }
974
 
@@ -976,8 +976,8 @@
976
  color: $icon-stayfriends;
977
  background-color: $icon-stayfriends;
978
 
979
- &:before {
980
- content: "\e065";
981
  }
982
  }
983
 
@@ -985,8 +985,8 @@
985
  color: $icon-residentadvisor;
986
  background-color: $icon-residentadvisor;
987
 
988
- &:before {
989
- content: "\e066";
990
  }
991
  }
992
 
@@ -994,8 +994,8 @@
994
  color: $icon-google;
995
  background-color: $icon-google;
996
 
997
- &:before {
998
- content: "\e067";
999
  }
1000
  }
1001
 
@@ -1003,8 +1003,8 @@
1003
  color: $icon-yandex;
1004
  background-color: $icon-yandex;
1005
 
1006
- &:before {
1007
- content: "\e068";
1008
  }
1009
  }
1010
 
@@ -1012,8 +1012,8 @@
1012
  color: $icon-sharethis;
1013
  background-color: $icon-sharethis;
1014
 
1015
- &:before {
1016
- content: "\e069";
1017
  }
1018
  }
1019
 
@@ -1021,8 +1021,8 @@
1021
  color: $icon-bandcamp;
1022
  background-color: $icon-bandcamp;
1023
 
1024
- &:before {
1025
- content: "\e06a";
1026
  }
1027
  }
1028
 
@@ -1030,8 +1030,8 @@
1030
  color: $icon-itunes;
1031
  background-color: $icon-itunes;
1032
 
1033
- &:before {
1034
- content: "\e06b";
1035
  }
1036
  }
1037
 
@@ -1039,8 +1039,8 @@
1039
  color: $icon-deezer;
1040
  background-color: $icon-deezer;
1041
 
1042
- &:before {
1043
- content: "\e06c";
1044
  }
1045
  }
1046
 
@@ -1048,8 +1048,8 @@
1048
  color: $icon-medium;
1049
  background-color: $icon-medium;
1050
 
1051
- &:before {
1052
- content: "\e06d";
1053
  }
1054
  }
1055
 
@@ -1057,8 +1057,8 @@
1057
  color: $icon-telegram;
1058
  background-color: $icon-telegram;
1059
 
1060
- &:before {
1061
- content: "\e06e";
1062
  }
1063
  }
1064
 
@@ -1066,8 +1066,8 @@
1066
  color: $icon-openid;
1067
  background-color: $icon-openid;
1068
 
1069
- &:before {
1070
- content: "\e06f";
1071
  }
1072
  }
1073
 
@@ -1075,8 +1075,8 @@
1075
  color: $icon-amplement;
1076
  background-color: $icon-amplement;
1077
 
1078
- &:before {
1079
- content: "\e070";
1080
  }
1081
  }
1082
 
@@ -1084,8 +1084,8 @@
1084
  color: $icon-viber;
1085
  background-color: $icon-viber;
1086
 
1087
- &:before {
1088
- content: "\e071";
1089
  }
1090
  }
1091
 
@@ -1093,8 +1093,8 @@
1093
  color: $icon-zomato;
1094
  background-color: $icon-zomato;
1095
 
1096
- &:before {
1097
- content: "\e072";
1098
  }
1099
  }
1100
 
@@ -1102,8 +1102,8 @@
1102
  color: $icon-quora;
1103
  background-color: $icon-quora;
1104
 
1105
- &:before {
1106
- content: "\e073";
1107
  }
1108
  }
1109
 
@@ -1111,8 +1111,8 @@
1111
  color: $icon-draugiem;
1112
  background-color: $icon-draugiem;
1113
 
1114
- &:before {
1115
- content: "\e074";
1116
  }
1117
  }
1118
 
@@ -1120,8 +1120,8 @@
1120
  color: $icon-endomodo;
1121
  background-color: $icon-endomodo;
1122
 
1123
- &:before {
1124
- content: "\e075";
1125
  }
1126
  }
1127
 
@@ -1129,8 +1129,8 @@
1129
  color: $icon-filmweb;
1130
  background-color: $icon-filmweb;
1131
 
1132
- &:before {
1133
- content: "\e076";
1134
  }
1135
  }
1136
 
@@ -1138,8 +1138,8 @@
1138
  color: $icon-stackexchange;
1139
  background-color: $icon-stackexchange;
1140
 
1141
- &:before {
1142
- content: "\e077";
1143
  }
1144
  }
1145
 
@@ -1147,8 +1147,8 @@
1147
  color: $icon-wykop;
1148
  background-color: $icon-wykop;
1149
 
1150
- &:before {
1151
- content: "\e078";
1152
  }
1153
  }
1154
 
@@ -1156,8 +1156,8 @@
1156
  color: $icon-teamspeak;
1157
  background-color: $icon-teamspeak;
1158
 
1159
- &:before {
1160
- content: "\e079";
1161
  }
1162
  }
1163
 
@@ -1165,8 +1165,8 @@
1165
  color: $icon-teamviewer;
1166
  background-color: $icon-teamviewer;
1167
 
1168
- &:before {
1169
- content: "\e07a";
1170
  }
1171
  }
1172
 
@@ -1174,8 +1174,8 @@
1174
  color: $icon-ventrilo;
1175
  background-color: $icon-ventrilo;
1176
 
1177
- &:before {
1178
- content: "\e07b";
1179
  }
1180
  }
1181
 
@@ -1183,8 +1183,8 @@
1183
  color: $icon-younow;
1184
  background-color: $icon-younow;
1185
 
1186
- &:before {
1187
- content: "\e07c";
1188
  }
1189
  }
1190
 
@@ -1192,8 +1192,8 @@
1192
  color: $icon-raidcall;
1193
  background-color: $icon-raidcall;
1194
 
1195
- &:before {
1196
- content: "\e07d";
1197
  }
1198
  }
1199
 
@@ -1201,8 +1201,8 @@
1201
  color: $icon-mumble;
1202
  background-color: $icon-mumble;
1203
 
1204
- &:before {
1205
- content: "\e07e";
1206
  }
1207
  }
1208
 
@@ -1210,8 +1210,8 @@
1210
  color: $icon-bebee;
1211
  background-color: $icon-bebee;
1212
 
1213
- &:before {
1214
- content: "\e07f";
1215
  }
1216
  }
1217
 
@@ -1219,8 +1219,8 @@
1219
  color: $icon-hitbox;
1220
  background-color: $icon-hitbox;
1221
 
1222
- &:before {
1223
- content: "\e080";
1224
  }
1225
  }
1226
 
@@ -1228,8 +1228,8 @@
1228
  color: $icon-reverbnation;
1229
  background-color: $icon-reverbnation;
1230
 
1231
- &:before {
1232
- content: "\e081";
1233
  }
1234
  }
1235
 
@@ -1237,8 +1237,8 @@
1237
  color: $icon-formulr;
1238
  background-color: $icon-formulr;
1239
 
1240
- &:before {
1241
- content: "\e082";
1242
  }
1243
  }
1244
 
@@ -1246,8 +1246,8 @@
1246
  color: $icon-battlenet;
1247
  background-color: $icon-battlenet;
1248
 
1249
- &:before {
1250
- content: "\e083";
1251
  }
1252
  }
1253
 
@@ -1255,8 +1255,8 @@
1255
  color: $icon-chrome;
1256
  background-color: $icon-chrome;
1257
 
1258
- &:before {
1259
- content: "\e084";
1260
  }
1261
  }
1262
 
@@ -1264,8 +1264,8 @@
1264
  color: $icon-diablo;
1265
  background-color: $icon-diablo;
1266
 
1267
- &:before {
1268
- content: "\e085";
1269
  }
1270
  }
1271
 
@@ -1273,8 +1273,8 @@
1273
  color: $icon-discord;
1274
  background-color: $icon-discord;
1275
 
1276
- &:before {
1277
- content: "\e086";
1278
  }
1279
  }
1280
 
@@ -1282,8 +1282,8 @@
1282
  color: $icon-issuu;
1283
  background-color: $icon-issuu;
1284
 
1285
- &:before {
1286
- content: "\e087";
1287
  }
1288
  }
1289
 
@@ -1291,8 +1291,8 @@
1291
  color: $icon-macos;
1292
  background-color: $icon-macos;
1293
 
1294
- &:before {
1295
- content: "\e088";
1296
  }
1297
  }
1298
 
@@ -1300,8 +1300,8 @@
1300
  color: $icon-firefox;
1301
  background-color: $icon-firefox;
1302
 
1303
- &:before {
1304
- content: "\e089";
1305
  }
1306
  }
1307
 
@@ -1309,8 +1309,8 @@
1309
  color: $icon-heroes;
1310
  background-color: $icon-heroes;
1311
 
1312
- &:before {
1313
- content: "\e08a";
1314
  }
1315
  }
1316
 
@@ -1318,8 +1318,8 @@
1318
  color: $icon-hearthstone;
1319
  background-color: $icon-hearthstone;
1320
 
1321
- &:before {
1322
- content: "\e08b";
1323
  }
1324
  }
1325
 
@@ -1327,8 +1327,8 @@
1327
  color: $icon-overwatch;
1328
  background-color: $icon-overwatch;
1329
 
1330
- &:before {
1331
- content: "\e08c";
1332
  }
1333
  }
1334
 
@@ -1336,8 +1336,8 @@
1336
  color: $icon-opera;
1337
  background-color: $icon-opera;
1338
 
1339
- &:before {
1340
- content: "\e08d";
1341
  }
1342
  }
1343
 
@@ -1345,8 +1345,8 @@
1345
  color: $icon-warcraft;
1346
  background-color: $icon-warcraft;
1347
 
1348
- &:before {
1349
- content: "\e08e";
1350
  }
1351
  }
1352
 
@@ -1354,8 +1354,8 @@
1354
  color: $icon-starcraft;
1355
  background-color: $icon-starcraft;
1356
 
1357
- &:before {
1358
- content: "\e08f";
1359
  }
1360
  }
1361
 
@@ -1363,8 +1363,8 @@
1363
  color: $icon-keybase;
1364
  background-color: $icon-keybase;
1365
 
1366
- &:before {
1367
- content: "\e090";
1368
  }
1369
  }
1370
 
@@ -1372,8 +1372,8 @@
1372
  color: $icon-alliance;
1373
  background-color: $icon-alliance;
1374
 
1375
- &:before {
1376
- content: "\e091";
1377
  }
1378
  }
1379
 
@@ -1381,8 +1381,8 @@
1381
  color: $icon-livejournal;
1382
  background-color: $icon-livejournal;
1383
 
1384
- &:before {
1385
- content: "\e092";
1386
  }
1387
  }
1388
 
@@ -1390,8 +1390,8 @@
1390
  color: $icon-googlephotos;
1391
  background-color: $icon-googlephotos;
1392
 
1393
- &:before {
1394
- content: "\e093";
1395
  }
1396
  }
1397
 
@@ -1399,8 +1399,8 @@
1399
  color: $icon-horde;
1400
  background-color: $icon-horde;
1401
 
1402
- &:before {
1403
- content: "\e094";
1404
  }
1405
  }
1406
 
@@ -1408,8 +1408,8 @@
1408
  color: $icon-etsy;
1409
  background-color: $icon-etsy;
1410
 
1411
- &:before {
1412
- content: "\e095";
1413
  }
1414
  }
1415
 
@@ -1417,8 +1417,8 @@
1417
  color: $icon-zapier;
1418
  background-color: $icon-zapier;
1419
 
1420
- &:before {
1421
- content: "\e096";
1422
  }
1423
  }
1424
 
@@ -1426,8 +1426,8 @@
1426
  color: $icon-google-scholar;
1427
  background-color: $icon-google-scholar;
1428
 
1429
- &:before {
1430
- content: "\e097";
1431
  }
1432
  }
1433
 
@@ -1435,7 +1435,7 @@
1435
  color: $icon-researchgate;
1436
  background-color: $icon-researchgate;
1437
 
1438
- &:before {
1439
- content: "\e098";
1440
  }
1441
  }
6
  /**
7
  * Imports
8
  */
9
+ @import 'variables';
10
 
11
  /**
12
  * Socicon fonts
25
  /**
26
  * Styling begins
27
  */
28
+ [data-icon]::before {
29
+ font-family: 'socicon' !important;
30
  content: attr(data-icon);
31
  font-style: normal !important;
32
  font-weight: normal !important;
38
  -moz-osx-font-smoothing: grayscale;
39
  }
40
 
41
+ [class^='socicon-']::before,
42
+ [class*='socicon-']::before {
43
+ font-family: 'socicon' !important;
44
  font-style: normal !important;
45
  font-weight: normal !important;
46
  font-variant: normal !important;
67
  color: $icon-modelmayhem;
68
  background-color: $icon-modelmayhem;
69
 
70
+ &::before {
71
+ content: '\e000';
72
  }
73
  }
74
 
76
  color: $icon-mixcloud;
77
  background-color: $icon-mixcloud;
78
 
79
+ &::before {
80
+ content: '\e001';
81
  }
82
  }
83
 
85
  color: $icon-drupal;
86
  background-color: $icon-drupal;
87
 
88
+ &::before {
89
+ content: '\e002';
90
  }
91
  }
92
 
94
  color: $icon-swarm;
95
  background-color: $icon-swarm;
96
 
97
+ &::before {
98
+ content: '\e003';
99
  }
100
  }
101
 
103
  color: $icon-istock;
104
  background-color: $icon-istock;
105
 
106
+ &::before {
107
+ content: '\e004';
108
  }
109
  }
110
 
112
  color: $icon-yammer;
113
  background-color: $icon-yammer;
114
 
115
+ &::before {
116
+ content: '\e005';
117
  }
118
  }
119
 
121
  color: $icon-ello;
122
  background-color: $icon-ello;
123
 
124
+ &::before {
125
+ content: '\e006';
126
  }
127
  }
128
 
130
  color: $icon-stackoverflow;
131
  background-color: $icon-stackoverflow;
132
 
133
+ &::before {
134
+ content: '\e007';
135
  }
136
  }
137
 
139
  color: $icon-persona;
140
  background-color: $icon-persona;
141
 
142
+ &::before {
143
+ content: '\e008';
144
  }
145
  }
146
 
148
  color: $icon-triplej;
149
  background-color: $icon-triplej;
150
 
151
+ &::before {
152
+ content: '\e009';
153
  }
154
  }
155
 
157
  color: $icon-houzz;
158
  background-color: $icon-houzz;
159
 
160
+ &::before {
161
+ content: '\e00a';
162
  }
163
  }
164
 
166
  color: $icon-rss;
167
  background-color: $icon-rss;
168
 
169
+ &::before {
170
+ content: '\e00b';
171
  }
172
  }
173
 
175
  color: $icon-paypal;
176
  background-color: $icon-paypal;
177
 
178
+ &::before {
179
+ content: '\e00c';
180
  }
181
  }
182
 
184
  color: $icon-odnoklassniki;
185
  background-color: $icon-odnoklassniki;
186
 
187
+ &::before {
188
+ content: '\e00d';
189
  }
190
  }
191
 
193
  color: $icon-airbnb;
194
  background-color: $icon-airbnb;
195
 
196
+ &::before {
197
+ content: '\e00e';
198
  }
199
  }
200
 
202
  color: $icon-periscope;
203
  background-color: $icon-periscope;
204
 
205
+ &::before {
206
+ content: '\e00f';
207
  }
208
  }
209
 
211
  color: $icon-outlook;
212
  background-color: $icon-outlook;
213
 
214
+ &::before {
215
+ content: '\e010';
216
  }
217
  }
218
 
220
  color: $icon-coderwall;
221
  background-color: $icon-coderwall;
222
 
223
+ &::before {
224
+ content: '\e011';
225
  }
226
  }
227
 
229
  color: $icon-tripadvisor;
230
  background-color: $icon-tripadvisor;
231
 
232
+ &::before {
233
+ content: '\e012';
234
  }
235
  }
236
 
238
  color: $icon-appnet;
239
  background-color: $icon-appnet;
240
 
241
+ &::before {
242
+ content: '\e013';
243
  }
244
  }
245
 
247
  color: $icon-goodreads;
248
  background-color: $icon-goodreads;
249
 
250
+ &::before {
251
+ content: '\e014';
252
  }
253
  }
254
 
256
  color: $icon-tripit;
257
  background-color: $icon-tripit;
258
 
259
+ &::before {
260
+ content: '\e015';
261
  }
262
  }
263
 
265
  color: $icon-lanyrd;
266
  background-color: $icon-lanyrd;
267
 
268
+ &::before {
269
+ content: '\e016';
270
  }
271
  }
272
 
274
  color: $icon-slideshare;
275
  background-color: $icon-slideshare;
276
 
277
+ &::before {
278
+ content: '\e017';
279
  }
280
  }
281
 
283
  color: $icon-buffer;
284
  background-color: $icon-buffer;
285
 
286
+ &::before {
287
+ content: '\e018';
288
  }
289
  }
290
 
292
  color: $icon-disqus;
293
  background-color: $icon-disqus;
294
 
295
+ &::before {
296
+ content: '\e019';
297
  }
298
  }
299
 
301
  color: $icon-vkontakte;
302
  background-color: $icon-vkontakte;
303
 
304
+ &::before {
305
+ content: '\e01a';
306
  }
307
  }
308
 
310
  color: $icon-whatsapp;
311
  background-color: $icon-whatsapp;
312
 
313
+ &::before {
314
+ content: '\e01b';
315
  }
316
  }
317
 
319
  color: $icon-patreon;
320
  background-color: $icon-patreon;
321
 
322
+ &::before {
323
+ content: '\e01c';
324
  }
325
  }
326
 
328
  color: $icon-storehouse;
329
  background-color: $icon-storehouse;
330
 
331
+ &::before {
332
+ content: '\e01d';
333
  }
334
  }
335
 
337
  color: $icon-pocket;
338
  background-color: $icon-pocket;
339
 
340
+ &::before {
341
+ content: '\e01e';
342
  }
343
  }
344
 
346
  color: $icon-mail;
347
  background-color: $icon-mail;
348
 
349
+ &::before {
350
+ content: '\e01f';
351
  }
352
  }
353
 
355
  color: $icon-blogger;
356
  background-color: $icon-blogger;
357
 
358
+ &::before {
359
+ content: '\e020';
360
  }
361
  }
362
 
364
  color: $icon-technorati;
365
  background-color: $icon-technorati;
366
 
367
+ &::before {
368
+ content: '\e021';
369
  }
370
  }
371
 
373
  color: $icon-reddit;
374
  background-color: $icon-reddit;
375
 
376
+ &::before {
377
+ content: '\e022';
378
  }
379
  }
380
 
382
  color: $icon-dribbble;
383
  background-color: $icon-dribbble;
384
 
385
+ &::before {
386
+ content: '\e023';
387
  }
388
  }
389
 
391
  color: $icon-stumbleupon;
392
  background-color: $icon-stumbleupon;
393
 
394
+ &::before {
395
+ content: '\e024';
396
  }
397
  }
398
 
400
  color: $icon-digg;
401
  background-color: $icon-digg;
402
 
403
+ &::before {
404
+ content: '\e025';
405
  }
406
  }
407
 
409
  color: $icon-envato;
410
  background-color: $icon-envato;
411
 
412
+ &::before {
413
+ content: '\e026';
414
  }
415
  }
416
 
418
  color: $icon-behance;
419
  background-color: $icon-behance;
420
 
421
+ &::before {
422
+ content: '\e027';
423
  }
424
  }
425
 
427
  color: $icon-delicious;
428
  background-color: $icon-delicious;
429
 
430
+ &::before {
431
+ content: '\e028';
432
  }
433
  }
434
 
436
  color: $icon-deviantart;
437
  background-color: $icon-deviantart;
438
 
439
+ &::before {
440
+ content: '\e029';
441
  }
442
  }
443
 
445
  color: $icon-forrst;
446
  background-color: $icon-forrst;
447
 
448
+ &::before {
449
+ content: '\e02a';
450
  }
451
  }
452
 
454
  color: $icon-play;
455
  background-color: $icon-play;
456
 
457
+ &::before {
458
+ content: '\e02b';
459
  }
460
  }
461
 
463
  color: $icon-zerply;
464
  background-color: $icon-zerply;
465
 
466
+ &::before {
467
+ content: '\e02c';
468
  }
469
  }
470
 
472
  color: $icon-wikipedia;
473
  background-color: $icon-wikipedia;
474
 
475
+ &::before {
476
+ content: '\e02d';
477
  }
478
  }
479
 
481
  color: $icon-apple;
482
  background-color: $icon-apple;
483
 
484
+ &::before {
485
+ content: '\e02e';
486
  }
487
  }
488
 
490
  color: $icon-flattr;
491
  background-color: $icon-flattr;
492
 
493
+ &::before {
494
+ content: '\e02f';
495
  }
496
  }
497
 
499
  color: $icon-github;
500
  background-color: $icon-github;
501
 
502
+ &::before {
503
+ content: '\e030';
504
  }
505
  }
506
 
508
  color: $icon-renren;
509
  background-color: $icon-renren;
510
 
511
+ &::before {
512
+ content: '\e031';
513
  }
514
  }
515
 
517
  color: $icon-friendfeed;
518
  background-color: $icon-friendfeed;
519
 
520
+ &::before {
521
+ content: '\e032';
522
  }
523
  }
524
 
526
  color: $icon-newsvine;
527
  background-color: $icon-newsvine;
528
 
529
+ &::before {
530
+ content: '\e033';
531
  }
532
  }
533
 
535
  color: $icon-identica;
536
  background-color: $icon-identica;
537
 
538
+ &::before {
539
+ content: '\e034';
540
  }
541
  }
542
 
544
  color: $icon-bebo;
545
  background-color: $icon-bebo;
546
 
547
+ &::before {
548
+ content: '\e035';
549
  }
550
  }
551
 
553
  color: $icon-zynga;
554
  background-color: $icon-zynga;
555
 
556
+ &::before {
557
+ content: '\e036';
558
  }
559
  }
560
 
562
  color: $icon-steam;
563
  background-color: $icon-steam;
564
 
565
+ &::before {
566
+ content: '\e037';
567
  }
568
  }
569
 
571
  color: $icon-xbox;
572
  background-color: $icon-xbox;
573
 
574
+ &::before {
575
+ content: '\e038';
576
  }
577
  }
578
 
580
  color: $icon-windows;
581
  background-color: $icon-windows;
582
 
583
+ &::before {
584
+ content: '\e039';
585
  }
586
  }
587
 
589
  color: $icon-qq;
590
  background-color: $icon-qq;
591
 
592
+ &::before {
593
+ content: '\e03a';
594
  }
595
  }
596
 
598
  color: $icon-douban;
599
  background-color: $icon-douban;
600
 
601
+ &::before {
602
+ content: '\e03b';
603
  }
604
  }
605
 
607
  color: $icon-meetup;
608
  background-color: $icon-meetup;
609
 
610
+ &::before {
611
+ content: '\e03c';
612
  }
613
  }
614
 
616
  color: $icon-playstation;
617
  background-color: $icon-playstation;
618
 
619
+ &::before {
620
+ content: '\e03d';
621
  }
622
  }
623
 
625
  color: $icon-android;
626
  background-color: $icon-android;
627
 
628
+ &::before {
629
+ content: '\e03e';
630
  }
631
  }
632
 
634
  color: $icon-snapchat;
635
  background-color: $icon-snapchat;
636
 
637
+ &::before {
638
+ content: '\e03f';
639
  }
640
  }
641
 
643
  color: $icon-twitter;
644
  background-color: $icon-twitter;
645
 
646
+ &::before {
647
+ content: '\e040';
648
  }
649
  }
650
 
652
  color: $icon-facebook;
653
  background-color: $icon-facebook;
654
 
655
+ &::before {
656
+ content: '\e041';
657
  }
658
  }
659
 
661
  color: $icon-googleplus;
662
  background-color: $icon-googleplus;
663
 
664
+ &::before {
665
+ content: '\e042';
666
  }
667
  }
668
 
670
  color: $icon-pinterest;
671
  background-color: $icon-pinterest;
672
 
673
+ &::before {
674
+ content: '\e043';
675
  }
676
  }
677
 
679
  color: $icon-foursquare;
680
  background-color: $icon-foursquare;
681
 
682
+ &::before {
683
+ content: '\e044';
684
  }
685
  }
686
 
688
  color: $icon-yahoo;
689
  background-color: $icon-yahoo;
690
 
691
+ &::before {
692
+ content: '\e045';
693
  }
694
  }
695
 
697
  color: $icon-skype;
698
  background-color: $icon-skype;
699
 
700
+ &::before {
701
+ content: '\e046';
702
  }
703
  }
704
 
706
  color: $icon-yelp;
707
  background-color: $icon-yelp;
708
 
709
+ &::before {
710
+ content: '\e047';
711
  }
712
  }
713
 
715
  color: $icon-feedburner;
716
  background-color: $icon-feedburner;
717
 
718
+ &::before {
719
+ content: '\e048';
720
  }
721
  }
722
 
724
  color: $icon-linkedin;
725
  background-color: $icon-linkedin;
726
 
727
+ &::before {
728
+ content: '\e049';
729
  }
730
  }
731
 
733
  color: $icon-viadeo;
734
  background-color: $icon-viadeo;
735
 
736
+ &::before {
737
+ content: '\e04a';
738
  }
739
  }
740
 
742
  color: $icon-xing;
743
  background-color: $icon-xing;
744
 
745
+ &::before {
746
+ content: '\e04b';
747
  }
748
  }
749
 
751
  color: $icon-myspace;
752
  background-color: $icon-myspace;
753
 
754
+ &::before {
755
+ content: '\e04c';
756
  }
757
  }
758
 
760
  color: $icon-soundcloud;
761
  background-color: $icon-soundcloud;
762
 
763
+ &::before {
764
+ content: '\e04d';
765
  }
766
  }
767
 
769
  color: $icon-spotify;
770
  background-color: $icon-spotify;
771
 
772
+ &::before {
773
+ content: '\e04e';
774
  }
775
  }
776
 
778
  color: $icon-grooveshark;
779
  background-color: $icon-grooveshark;
780
 
781
+ &::before {
782
+ content: '\e04f';
783
  }
784
  }
785
 
787
  color: $icon-lastfm;
788
  background-color: $icon-lastfm;
789
 
790
+ &::before {
791
+ content: '\e050';
792
  }
793
  }
794
 
796
  color: $icon-youtube;
797
  background-color: $icon-youtube;
798
 
799
+ &::before {
800
+ content: '\e051';
801
  }
802
  }
803
 
805
  color: $icon-vimeo;
806
  background-color: $icon-vimeo;
807
 
808
+ &::before {
809
+ content: '\e052';
810
  }
811
  }
812
 
814
  color: $icon-dailymotion;
815
  background-color: $icon-dailymotion;
816
 
817
+ &::before {
818
+ content: '\e053';
819
  }
820
  }
821
 
823
  color: $icon-vine;
824
  background-color: $icon-vine;
825
 
826
+ &::before {
827
+ content: '\e054';
828
  }
829
  }
830
 
832
  color: $icon-flickr;
833
  background-color: $icon-flickr;
834
 
835
+ &::before {
836
+ content: '\e055';
837
  }
838
  }
839
 
841
  color: $icon-500px;
842
  background-color: $icon-500px;
843
 
844
+ &::before {
845
+ content: '\e056';
846
  }
847
  }
848
 
850
  color: $icon-instagram;
851
  background-color: $icon-instagram;
852
 
853
+ &::before {
854
+ content: '\e057';
855
  }
856
  }
857
 
859
  color: $icon-wordpress;
860
  background-color: $icon-wordpress;
861
 
862
+ &::before {
863
+ content: '\e058';
864
  }
865
  }
866
 
868
  color: $icon-tumblr;
869
  background-color: $icon-tumblr;
870
 
871
+ &::before {
872
+ content: '\e059';
873
  }
874
  }
875
 
877
  color: $icon-twitch;
878
  background-color: $icon-twitch;
879
 
880
+ &::before {
881
+ content: '\e05a';
882
  }
883
  }
884
 
886
  color: $icon-8tracks;
887
  background-color: $icon-8tracks;
888
 
889
+ &::before {
890
+ content: '\e05b';
891
  }
892
  }
893
 
895
  color: $icon-amazon;
896
  background-color: $icon-amazon;
897
 
898
+ &::before {
899
+ content: '\e05c';
900
  }
901
  }
902
 
904
  color: $icon-icq;
905
  background-color: $icon-icq;
906
 
907
+ &::before {
908
+ content: '\e05d';
909
  }
910
  }
911
 
913
  color: $icon-smugmug;
914
  background-color: $icon-smugmug;
915
 
916
+ &::before {
917
+ content: '\e05e';
918
  }
919
  }
920
 
922
  color: $icon-ravelry;
923
  background-color: $icon-ravelry;
924
 
925
+ &::before {
926
+ content: '\e05f';
927
  }
928
  }
929
 
931
  color: $icon-weibo;
932
  background-color: $icon-weibo;
933
 
934
+ &::before {
935
+ content: '\e060';
936
  }
937
  }
938
 
940
  color: $icon-baidu;
941
  background-color: $icon-baidu;
942
 
943
+ &::before {
944
+ content: '\e061';
945
  }
946
  }
947
 
949
  color: $icon-angellist;
950
  background-color: $icon-angellist;
951
 
952
+ &::before {
953
+ content: '\e062';
954
  }
955
  }
956
 
958
  color: $icon-ebay;
959
  background-color: $icon-ebay;
960
 
961
+ &::before {
962
+ content: '\e063';
963
  }
964
  }
965
 
967
  color: $icon-imdb;
968
  background-color: $icon-imdb;
969
 
970
+ &::before {
971
+ content: '\e064';
972
  }
973
  }
974
 
976
  color: $icon-stayfriends;
977
  background-color: $icon-stayfriends;
978
 
979
+ &::before {
980
+ content: '\e065';
981
  }
982
  }
983
 
985
  color: $icon-residentadvisor;
986
  background-color: $icon-residentadvisor;
987
 
988
+ &::before {
989
+ content: '\e066';
990
  }
991
  }
992
 
994
  color: $icon-google;
995
  background-color: $icon-google;
996
 
997
+ &::before {
998
+ content: '\e067';
999
  }
1000
  }
1001
 
1003
  color: $icon-yandex;
1004
  background-color: $icon-yandex;
1005
 
1006
+ &::before {
1007
+ content: '\e068';
1008
  }
1009
  }
1010
 
1012
  color: $icon-sharethis;
1013
  background-color: $icon-sharethis;
1014
 
1015
+ &::before {
1016
+ content: '\e069';
1017
  }
1018
  }
1019
 
1021
  color: $icon-bandcamp;
1022
  background-color: $icon-bandcamp;
1023
 
1024
+ &::before {
1025
+ content: '\e06a';
1026
  }
1027
  }
1028
 
1030
  color: $icon-itunes;
1031
  background-color: $icon-itunes;
1032
 
1033
+ &::before {
1034
+ content: '\e06b';
1035
  }
1036
  }
1037
 
1039
  color: $icon-deezer;
1040
  background-color: $icon-deezer;
1041
 
1042
+ &::before {
1043
+ content: '\e06c';
1044
  }
1045
  }
1046
 
1048
  color: $icon-medium;
1049
  background-color: $icon-medium;
1050
 
1051
+ &::before {
1052
+ content: '\e06d';
1053
  }
1054
  }
1055
 
1057
  color: $icon-telegram;
1058
  background-color: $icon-telegram;
1059
 
1060
+ &::before {
1061
+ content: '\e06e';
1062
  }
1063
  }
1064
 
1066
  color: $icon-openid;
1067
  background-color: $icon-openid;
1068
 
1069
+ &::before {
1070
+ content: '\e06f';
1071
  }
1072
  }
1073
 
1075
  color: $icon-amplement;
1076
  background-color: $icon-amplement;
1077
 
1078
+ &::before {
1079
+ content: '\e070';
1080
  }
1081
  }
1082
 
1084
  color: $icon-viber;
1085
  background-color: $icon-viber;
1086
 
1087
+ &::before {
1088
+ content: '\e071';
1089
  }
1090
  }
1091
 
1093
  color: $icon-zomato;
1094
  background-color: $icon-zomato;
1095
 
1096
+ &::before {
1097
+ content: '\e072';
1098
  }
1099
  }
1100
 
1102
  color: $icon-quora;
1103
  background-color: $icon-quora;
1104
 
1105
+ &::before {
1106
+ content: '\e073';
1107
  }
1108
  }
1109
 
1111
  color: $icon-draugiem;
1112
  background-color: $icon-draugiem;
1113
 
1114
+ &::before {
1115
+ content: '\e074';
1116
  }
1117
  }
1118
 
1120
  color: $icon-endomodo;
1121
  background-color: $icon-endomodo;
1122
 
1123
+ &::before {
1124
+ content: '\e075';
1125
  }
1126
  }
1127
 
1129
  color: $icon-filmweb;
1130
  background-color: $icon-filmweb;
1131
 
1132
+ &::before {
1133
+ content: '\e076';
1134
  }
1135
  }
1136
 
1138
  color: $icon-stackexchange;
1139
  background-color: $icon-stackexchange;
1140
 
1141
+ &::before {
1142
+ content: '\e077';
1143
  }
1144
  }
1145
 
1147
  color: $icon-wykop;
1148
  background-color: $icon-wykop;
1149
 
1150
+ &::before {
1151
+ content: '\e078';
1152
  }
1153
  }
1154
 
1156
  color: $icon-teamspeak;
1157
  background-color: $icon-teamspeak;
1158
 
1159
+ &::before {
1160
+ content: '\e079';
1161
  }
1162
  }
1163
 
1165
  color: $icon-teamviewer;
1166
  background-color: $icon-teamviewer;
1167
 
1168
+ &::before {
1169
+ content: '\e07a';
1170
  }
1171
  }
1172
 
1174
  color: $icon-ventrilo;
1175
  background-color: $icon-ventrilo;
1176
 
1177
+ &::before {
1178
+ content: '\e07b';
1179
  }
1180
  }
1181
 
1183
  color: $icon-younow;
1184
  background-color: $icon-younow;
1185
 
1186
+ &::before {
1187
+ content: '\e07c';
1188
  }
1189
  }
1190
 
1192
  color: $icon-raidcall;
1193
  background-color: $icon-raidcall;
1194
 
1195
+ &::before {
1196
+ content: '\e07d';
1197
  }
1198
  }
1199
 
1201
  color: $icon-mumble;
1202
  background-color: $icon-mumble;
1203
 
1204
+ &::before {
1205
+ content: '\e07e';
1206
  }
1207
  }
1208
 
1210
  color: $icon-bebee;
1211
  background-color: $icon-bebee;
1212
 
1213
+ &::before {
1214
+ content: '\e07f';
1215
  }
1216
  }
1217
 
1219
  color: $icon-hitbox;
1220
  background-color: $icon-hitbox;
1221
 
1222
+ &::before {
1223
+ content: '\e080';
1224
  }
1225
  }
1226
 
1228
  color: $icon-reverbnation;
1229
  background-color: $icon-reverbnation;
1230
 
1231
+ &::before {
1232
+ content: '\e081';
1233
  }
1234
  }
1235
 
1237
  color: $icon-formulr;
1238
  background-color: $icon-formulr;
1239
 
1240
+ &::before {
1241
+ content: '\e082';
1242
  }
1243
  }
1244
 
1246
  color: $icon-battlenet;
1247
  background-color: $icon-battlenet;
1248
 
1249
+ &::before {
1250
+ content: '\e083';
1251
  }
1252
  }
1253
 
1255
  color: $icon-chrome;
1256
  background-color: $icon-chrome;
1257
 
1258
+ &::before {
1259
+ content: '\e084';
1260
  }
1261
  }
1262
 
1264
  color: $icon-diablo;
1265
  background-color: $icon-diablo;
1266
 
1267
+ &::before {
1268
+ content: '\e085';
1269
  }
1270
  }
1271
 
1273
  color: $icon-discord;
1274
  background-color: $icon-discord;
1275
 
1276
+ &::before {
1277
+ content: '\e086';
1278
  }
1279
  }
1280
 
1282
  color: $icon-issuu;
1283
  background-color: $icon-issuu;
1284
 
1285
+ &::before {
1286
+ content: '\e087';
1287
  }
1288
  }
1289
 
1291
  color: $icon-macos;
1292
  background-color: $icon-macos;
1293
 
1294
+ &::before {
1295
+ content: '\e088';
1296
  }
1297
  }
1298
 
1300
  color: $icon-firefox;
1301
  background-color: $icon-firefox;
1302
 
1303
+ &::before {
1304
+ content: '\e089';
1305
  }
1306
  }
1307
 
1309
  color: $icon-heroes;
1310
  background-color: $icon-heroes;
1311
 
1312
+ &::before {
1313
+ content: '\e08a';
1314
  }
1315
  }
1316
 
1318
  color: $icon-hearthstone;
1319
  background-color: $icon-hearthstone;
1320
 
1321
+ &::before {
1322
+ content: '\e08b';
1323
  }
1324
  }
1325
 
1327
  color: $icon-overwatch;
1328
  background-color: $icon-overwatch;
1329
 
1330
+ &::before {
1331
+ content: '\e08c';
1332
  }
1333
  }
1334
 
1336
  color: $icon-opera;
1337
  background-color: $icon-opera;
1338
 
1339
+ &::before {
1340
+ content: '\e08d';
1341
  }
1342
  }
1343
 
1345
  color: $icon-warcraft;
1346
  background-color: $icon-warcraft;
1347
 
1348
+ &::before {
1349
+ content: '\e08e';
1350
  }
1351
  }
1352
 
1354
  color: $icon-starcraft;
1355
  background-color: $icon-starcraft;
1356
 
1357
+ &::before {
1358
+ content: '\e08f';
1359
  }
1360
  }
1361
 
1363
  color: $icon-keybase;
1364
  background-color: $icon-keybase;
1365
 
1366
+ &::before {
1367
+ content: '\e090';
1368
  }
1369
  }
1370
 
1372
  color: $icon-alliance;
1373
  background-color: $icon-alliance;
1374
 
1375
+ &::before {
1376
+ content: '\e091';
1377
  }
1378
  }
1379
 
1381
  color: $icon-livejournal;
1382
  background-color: $icon-livejournal;
1383
 
1384
+ &::before {
1385
+ content: '\e092';
1386
  }
1387
  }
1388
 
1390
  color: $icon-googlephotos;
1391
  background-color: $icon-googlephotos;
1392
 
1393
+ &::before {
1394
+ content: '\e093';
1395
  }
1396
  }
1397
 
1399
  color: $icon-horde;
1400
  background-color: $icon-horde;
1401
 
1402
+ &::before {
1403
+ content: '\e094';
1404
  }
1405
  }
1406
 
1408
  color: $icon-etsy;
1409
  background-color: $icon-etsy;
1410
 
1411
+ &::before {
1412
+ content: '\e095';
1413
  }
1414
  }
1415
 
1417
  color: $icon-zapier;
1418
  background-color: $icon-zapier;
1419
 
1420
+ &::before {
1421
+ content: '\e096';
1422
  }
1423
  }
1424
 
1426
  color: $icon-google-scholar;
1427
  background-color: $icon-google-scholar;
1428
 
1429
+ &::before {
1430
+ content: '\e097';
1431
  }
1432
  }
1433
 
1435
  color: $icon-researchgate;
1436
  background-color: $icon-researchgate;
1437
 
1438
+ &::before {
1439
+ content: '\e098';
1440
  }
1441
  }
assets/css/admin.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";[class*=" socicon-"]:before,[class^=socicon-]:before,[data-icon]:before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;-moz-osx-font-smoothing:grayscale;speak:none}.socicon,[data-icon]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" socicon-"]:before,[class^=socicon-]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem:before{content:"\e000"}.socicon-mixcloud:before{content:"\e001"}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal:before{content:"\e002"}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm:before{content:"\e003"}.socicon-istock{color:#000;background-color:#000}.socicon-istock:before{content:"\e004"}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer:before{content:"\e005"}.socicon-ello{color:#000;background-color:#000}.socicon-ello:before{content:"\e006"}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow:before{content:"\e007"}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona:before{content:"\e008"}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej:before{content:"\e009"}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz:before{content:"\e00a"}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss:before{content:"\e00b"}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal:before{content:"\e00c"}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki:before{content:"\e00d"}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb:before{content:"\e00e"}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope:before{content:"\e00f"}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook:before{content:"\e010"}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall:before{content:"\e011"}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor:before{content:"\e012"}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet:before{content:"\e013"}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads:before{content:"\e014"}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit:before{content:"\e015"}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd:before{content:"\e016"}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare:before{content:"\e017"}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer:before{content:"\e018"}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus:before{content:"\e019"}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte:before{content:"\e01a"}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp:before{content:"\e01b"}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon:before{content:"\e01c"}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse:before{content:"\e01d"}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket:before{content:"\e01e"}.socicon-mail{color:#000;background-color:#000}.socicon-mail:before{content:"\e01f"}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger:before{content:"\e020"}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati:before{content:"\e021"}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit:before{content:"\e022"}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble:before{content:"\e023"}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon:before{content:"\e024"}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg:before{content:"\e025"}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato:before{content:"\e026"}.socicon-behance{color:#000;background-color:#000}.socicon-behance:before{content:"\e027"}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious:before{content:"\e028"}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart:before{content:"\e029"}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst:before{content:"\e02a"}.socicon-play{color:#000;background-color:#000}.socicon-play:before{content:"\e02b"}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply:before{content:"\e02c"}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia:before{content:"\e02d"}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple:before{content:"\e02e"}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr:before{content:"\e02f"}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github:before{content:"\e030"}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren:before{content:"\e031"}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed:before{content:"\e032"}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine:before{content:"\e033"}.socicon-identica{color:#000;background-color:#000}.socicon-identica:before{content:"\e034"}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo:before{content:"\e035"}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga:before{content:"\e036"}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam:before{content:"\e037"}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox:before{content:"\e038"}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows:before{content:"\e039"}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq:before{content:"\e03a"}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban:before{content:"\e03b"}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup:before{content:"\e03c"}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation:before{content:"\e03d"}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android:before{content:"\e03e"}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat:before{content:"\e03f"}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter:before{content:"\e040"}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook:before{content:"\e041"}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus:before{content:"\e042"}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest:before{content:"\e043"}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare:before{content:"\e044"}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo:before{content:"\e045"}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype:before{content:"\e046"}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp:before{content:"\e047"}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner:before{content:"\e048"}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin:before{content:"\e049"}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo:before{content:"\e04a"}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing:before{content:"\e04b"}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace:before{content:"\e04c"}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud:before{content:"\e04d"}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify:before{content:"\e04e"}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark:before{content:"\e04f"}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm:before{content:"\e050"}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube:before{content:"\e051"}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo:before{content:"\e052"}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion:before{content:"\e053"}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine:before{content:"\e054"}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr:before{content:"\e055"}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px:before{content:"\e056"}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram:before{content:"\e057"}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress:before{content:"\e058"}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr:before{content:"\e059"}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch:before{content:"\e05a"}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks:before{content:"\e05b"}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon:before{content:"\e05c"}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq:before{content:"\e05d"}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug:before{content:"\e05e"}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry:before{content:"\e05f"}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo:before{content:"\e060"}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu:before{content:"\e061"}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist:before{content:"\e062"}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay:before{content:"\e063"}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb:before{content:"\e064"}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends:before{content:"\e065"}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor:before{content:"\e066"}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google:before{content:"\e067"}.socicon-yandex{color:red;background-color:red}.socicon-yandex:before{content:"\e068"}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis:before{content:"\e069"}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp:before{content:"\e06a"}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes:before{content:"\e06b"}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer:before{content:"\e06c"}.socicon-medium{color:#000;background-color:#000}.socicon-medium:before{content:"\e06d"}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram:before{content:"\e06e"}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid:before{content:"\e06f"}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement:before{content:"\e070"}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber:before{content:"\e071"}.socicon-zomato:before{content:"\e072"}.socicon-quora:before{content:"\e073"}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem:before{content:"\e074"}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo:before{content:"\e075"}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb:before{content:"\e076"}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange:before{content:"\e077"}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop:before{content:"\e078"}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak:before{content:"\e079"}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer:before{content:"\e07a"}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo:before{content:"\e07b"}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow:before{content:"\e07c"}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall:before{content:"\e07d"}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble:before{content:"\e07e"}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee:before{content:"\e07f"}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox:before{content:"\e080"}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation:before{content:"\e081"}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr:before{content:"\e082"}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet:before{content:"\e083"}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome:before{content:"\e084"}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo:before{content:"\e085"}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord:before{content:"\e086"}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu:before{content:"\e087"}.socicon-macos{color:#000;background-color:#000}.socicon-macos:before{content:"\e088"}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox:before{content:"\e089"}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes:before{content:"\e08a"}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone:before{content:"\e08b"}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch:before{content:"\e08c"}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera:before{content:"\e08d"}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft:before{content:"\e08e"}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft:before{content:"\e08f"}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase:before{content:"\e090"}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance:before{content:"\e091"}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal:before{content:"\e092"}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos:before{content:"\e093"}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde:before{content:"\e094"}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy:before{content:"\e095"}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier:before{content:"\e096"}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar:before{content:"\e097"}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate:before{content:"\e098"}#social-icons-group-data .panel-wrap,.social-icons .panel-wrap{overflow:hidden}#social-icons-group-data ul.si-tabs,.social-icons ul.si-tabs{margin:0;width:20%;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#social-icons-group-data ul.si-tabs:after,.social-icons ul.si-tabs:after{content:"";display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#social-icons-group-data ul.si-tabs li,.social-icons ul.si-tabs li{margin:0;padding:0;display:block;position:relative}#social-icons-group-data ul.si-tabs li a,.social-icons ul.si-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#social-icons-group-data ul.si-tabs li a:before,.social-icons ul.si-tabs li a:before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#social-icons-group-data ul.si-tabs li.general_options a:before,.social-icons ul.si-tabs li.general_options a:before{content:"\f107"}#social-icons-group-data ul.si-tabs li.linked_icons_options a:before,.social-icons ul.si-tabs li.linked_icons_options a:before{content:"\f103"}#social-icons-group-data ul.si-tabs li.active a,.social-icons ul.si-tabs li.active a{color:#555;position:relative;background-color:#eee}#social-icons-group-data .inside{margin:0;padding:0}.panel,.social_icons_options_panel{padding:0;color:#555}.panel .form-field .social-icons-help-tip,.social_icons_options_panel .form-field .social-icons-help-tip{font-size:1.4em}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel fieldset.form-field:after,.social_icons_options_panel p:after{content:".";display:block;height:0;clear:both;visibility:hidden}.social_icons_options_panel .checkbox{width:auto;margin:3px 0;vertical-align:middle}.social_icons_options_panel .sortable_icons table{width:100%;padding:0!important}.social_icons_options_panel .sortable_icons table tr.no-items{background:#f9f9f9}.social_icons_options_panel .sortable_icons table tr.no-items td p{margin:0}.social_icons_options_panel .sortable_icons table th{padding:7px 0 7px 7px!important}.social_icons_options_panel .sortable_icons table th.sort{width:17px;padding:7px!important}.social_icons_options_panel .sortable_icons table th .social-icons-help-tip{font-size:1.1em;margin-left:0}.social_icons_options_panel .sortable_icons table td{vertical-align:middle!important;padding:4px 0 4px 7px!important;position:relative}.social_icons_options_panel .sortable_icons table td:last-child{padding-right:7px!important}.social_icons_options_panel .sortable_icons table td input.input_text{width:100%;float:none;min-width:0;margin:1px 0}.social_icons_options_panel .sortable_icons table td .choose_icon_button{width:auto;float:right;cursor:pointer}.social_icons_options_panel .sortable_icons table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}.social-icons-help-tip:after,.social_icons_options_panel .sortable_icons table td .delete:before{font-family:Dashicons;speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;text-indent:0;text-align:center}.social_icons_options_panel .sortable_icons table td .delete:before{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";color:#999}.social_icons_options_panel .sortable_icons table td .delete:hover:before{color:#a00}.social_icons_options_panel .sortable_icons table td.sort{width:17px;cursor:move;text-align:center;background:#f9f9f9;padding-right:7px!important}.social_icons_options_panel .sortable_icons table td.sort.dashicons-plus{font-size:15px;font-family:Dashicons}.social_icons_options_panel .sortable_icons table td.sort:before{text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}.social_icons_options_panel .sortable_icons table td.sort:hover:before{color:#333}.social_icons_options_panel{min-height:175px;box-sizing:border-box}.social_icons_options_panel .sortable_icons{padding:0 9px;position:relative;margin:9px 0}.social_icons_options_panel .sortable_icons label{display:none}.social_icons_options_panel p{margin:9px 0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px 5px 162px!important}.social_icons_options_panel label,.social_icons_options_panel legend{float:left;width:150px;padding:0;margin:0 0 0 -150px}.social_icons_options_panel label .req,.social_icons_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.social_icons_options_panel .description{padding:0;margin:0 0 0 7px;clear:none;display:inline}.social_icons_options_panel .description-block{margin-left:0;display:block}.social_icons_options_panel input,.social_icons_options_panel select,.social_icons_options_panel textarea{margin:0}.social_icons_options_panel textarea{height:3.5em;line-height:1.5em;vertical-align:top}.social_icons_options_panel input[type=text],.social_icons_options_panel input[type=email],.social_icons_options_panel input[type=number],.social_icons_options_panel input[type=password]{width:50%;float:left}.social_icons_options_panel input.button{width:auto;margin-left:8px}.social_icons_options_panel select{float:left}.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:50%}.social_icons_options_panel .sized{width:auto!important;margin-right:6px}.social_icons_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #eee}.social_icons_options_panel .options_group:first-child{border-top:0}.social_icons_options_panel .options_group:last-child{border-bottom:0}.social_icons_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel .options_group fieldset label{width:auto;float:none}.social_icons_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.social_icons_options_panel .options_group fieldset ul li{margin:0;width:auto}.social_icons_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.social_icons_options_panel .options_group fieldset ul.si-radios label{margin-left:0}.social_icons_options_panel.padded{padding:1em}#social-icons-group-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#social-icons-group-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description::-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-data .panel-wrap{background:#fff}#social-icons-group-data .social_icons_options_panel{float:left;width:80%}#social-icons-group-data .social_icons_options_panel .si-radios{display:block;float:left;margin:0}#social-icons-group-data .social_icons_options_panel .si-radios li{display:block;padding:0 0 10px}#social-icons-group-data .social_icons_options_panel .si-radios li input{width:auto}table.wp-list-table .row-actions{color:#999}table.wp-list-table .column-shortcode .social-icons-help-tip{font-size:1.2em;margin-left:5px}table.wp-list-table span.shortcode{margin:2px 0;display:block}table.wp-list-table span.shortcode input[type=text]{margin:0;font-size:12px;padding:4px 8px;background:#fcfcfc}table.wp-list-table span.shortcode input[type=text].regular-text{width:20em}img.help_tip{margin:0 0 0 9px;vertical-align:middle}.postbox img.help_tip{margin-top:0}.postbox .social-icons-help-tip{margin:0 0 0 9px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:9999999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#333}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#333}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#333}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#333}#tiptip_content,.si_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#333;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.si_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.si_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#d82223;margin:1.5em 1px 0 -1em;z-index:9999999}.si_error_tip:after{content:"";display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.social-icons-help-tip{color:#666;display:inline-block;font-size:1.1em;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.social-icons-help-tip:after{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";cursor:help}@media only screen and (max-width:1280px){.social_icons_options_panel .description{display:block;clear:both;margin-left:0}.social_icons_options_panel .dimensions_field .wrap,.social_icons_options_panel .short,.social_icons_options_panel input[type=password].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=text].short{width:80%}}@media only screen and (max-width:900px){#social-icons-group-data ul.group_data_tabs{width:10%}#social-icons-group-data .social_icons_options_panel{width:90%}#social-icons-group-data ul.group_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#social-icons-group-data ul.group_data_tabs li a:before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:100%;height:40px}}@media only screen and (max-width:782px){#social-icons-group-data .checkbox{width:25px}}@media only screen and (max-width:500px){.social_icons_options_panel label,.social_icons_options_panel legend{float:none;width:auto;display:block;margin:0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px!important}}
1
+ @charset "UTF-8";[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;-moz-osx-font-smoothing:grayscale;speak:none}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}#social-icons-group-data .panel-wrap,.social-icons .panel-wrap{overflow:hidden}#social-icons-group-data ul.si-tabs,.social-icons ul.si-tabs{margin:0;width:20%;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#social-icons-group-data ul.si-tabs::after,.social-icons ul.si-tabs::after{content:'';display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#social-icons-group-data ul.si-tabs li,.social-icons ul.si-tabs li{margin:0;padding:0;display:block;position:relative}#social-icons-group-data ul.si-tabs li a,.social-icons ul.si-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#social-icons-group-data ul.si-tabs li a::before,.social-icons ul.si-tabs li a::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#social-icons-group-data ul.si-tabs li.general_options a::before,.social-icons ul.si-tabs li.general_options a::before{content:'\f107'}#social-icons-group-data ul.si-tabs li.linked_icons_options a::before,.social-icons ul.si-tabs li.linked_icons_options a::before{content:'\f103'}#social-icons-group-data ul.si-tabs li.active a,.social-icons ul.si-tabs li.active a{color:#555;position:relative;background-color:#eee}#social-icons-group-data .inside{margin:0;padding:0}.panel,.social_icons_options_panel{padding:0;color:#555}.panel .form-field .social-icons-help-tip,.social_icons_options_panel .form-field .social-icons-help-tip{font-size:1.4em}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel fieldset.form-field::after,.social_icons_options_panel p::after{content:'.';display:block;height:0;clear:both;visibility:hidden}.social_icons_options_panel .checkbox{width:auto;margin:3px 0;vertical-align:middle}.social_icons_options_panel .sortable_icons table{width:100%;padding:0!important}.social_icons_options_panel .sortable_icons table tr.no-items{background:#f9f9f9}.social_icons_options_panel .sortable_icons table tr.no-items td p{margin:0}.social_icons_options_panel .sortable_icons table th{padding:7px 0 7px 7px!important}.social_icons_options_panel .sortable_icons table th.sort{width:17px;padding:7px!important}.social_icons_options_panel .sortable_icons table th .social-icons-help-tip{font-size:1.1em;margin-left:0}.social_icons_options_panel .sortable_icons table td{vertical-align:middle!important;padding:4px 0 4px 7px!important;position:relative}.social_icons_options_panel .sortable_icons table td:last-child{padding-right:7px!important}.social_icons_options_panel .sortable_icons table td input.input_text{width:100%;float:none;min-width:0;margin:1px 0}.social_icons_options_panel .sortable_icons table td .choose_icon_button{width:auto;float:right;cursor:pointer}.social_icons_options_panel .sortable_icons table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}.social-icons-help-tip::after,.social_icons_options_panel .sortable_icons table td .delete::before{font-family:Dashicons;speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;text-indent:0;text-align:center}.social_icons_options_panel .sortable_icons table td .delete::before{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";color:#999}.social_icons_options_panel .sortable_icons table td .delete:hover::before{color:#a00}.social_icons_options_panel .sortable_icons table td.sort{width:17px;cursor:move;text-align:center;background:#f9f9f9;padding-right:7px!important}.social_icons_options_panel .sortable_icons table td.sort.dashicons-plus{font-size:15px;font-family:Dashicons}.social_icons_options_panel .sortable_icons table td.sort::before{text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}.social_icons_options_panel .sortable_icons table td.sort:hover::before{color:#333}.social_icons_options_panel{min-height:175px;box-sizing:border-box}.social_icons_options_panel .sortable_icons{padding:0 9px;position:relative;margin:9px 0}.social_icons_options_panel .sortable_icons label{display:none}.social_icons_options_panel p{margin:9px 0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px 5px 162px!important}.social_icons_options_panel label,.social_icons_options_panel legend{float:left;width:150px;padding:0;margin:0 0 0 -150px}.social_icons_options_panel label .req,.social_icons_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.social_icons_options_panel .description{padding:0;margin:0 0 0 7px;clear:none;display:inline}.social_icons_options_panel .description-block{margin-left:0;display:block}.social_icons_options_panel input,.social_icons_options_panel select,.social_icons_options_panel textarea{margin:0}.social_icons_options_panel textarea{height:3.5em;line-height:1.5em;vertical-align:top}.social_icons_options_panel input[type=text],.social_icons_options_panel input[type=email],.social_icons_options_panel input[type=number],.social_icons_options_panel input[type=password]{width:50%;float:left}.social_icons_options_panel input.button{width:auto;margin-left:8px}.social_icons_options_panel select{float:left}.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:50%}.social_icons_options_panel .sized{width:auto!important;margin-right:6px}.social_icons_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #eee}.social_icons_options_panel .options_group:first-child{border-top:0}.social_icons_options_panel .options_group:last-child{border-bottom:0}.social_icons_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel .options_group fieldset label{width:auto;float:none}.social_icons_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.social_icons_options_panel .options_group fieldset ul li{margin:0;width:auto}.social_icons_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.social_icons_options_panel .options_group fieldset ul.si-radios label{margin-left:0}.social_icons_options_panel.padded{padding:1em}#social-icons-group-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#social-icons-group-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description::-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-data .panel-wrap{background:#fff}#social-icons-group-data .social_icons_options_panel{float:left;width:80%}#social-icons-group-data .social_icons_options_panel .si-radios{display:block;float:left;margin:0}#social-icons-group-data .social_icons_options_panel .si-radios li{display:block;padding:0 0 10px}#social-icons-group-data .social_icons_options_panel .si-radios li input{width:auto}table.wp-list-table .row-actions{color:#999}table.wp-list-table .column-shortcode .social-icons-help-tip{font-size:1.2em;margin-left:5px}table.wp-list-table span.shortcode{margin:2px 0;display:block}table.wp-list-table span.shortcode input[type=text]{margin:0;font-size:12px;padding:4px 8px;background:#fcfcfc}table.wp-list-table span.shortcode input[type=text].regular-text{width:20em}img.help_tip{margin:0 0 0 9px;vertical-align:middle}.postbox img.help_tip{margin-top:0}.postbox .social-icons-help-tip{margin:0 0 0 9px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:9999999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#333}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#333}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#333}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#333}#tiptip_content,.si_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#333;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.si_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.si_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#d82223;margin:1.5em 1px 0 -1em;z-index:9999999}.si_error_tip::after{content:'';display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.social-icons-help-tip{color:#666;display:inline-block;font-size:1.1em;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.social-icons-help-tip::after{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";cursor:help}@media only screen and (max-width:1280px){.social_icons_options_panel .description{display:block;clear:both;margin-left:0}.social_icons_options_panel .dimensions_field .wrap,.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:80%}}@media only screen and (max-width:900px){#social-icons-group-data ul.group_data_tabs{width:10%}#social-icons-group-data .social_icons_options_panel{width:90%}#social-icons-group-data ul.group_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#social-icons-group-data ul.group_data_tabs li a::before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:100%;height:40px}}@media only screen and (max-width:782px){#social-icons-group-data .checkbox{width:25px}}@media only screen and (max-width:500px){.social_icons_options_panel label,.social_icons_options_panel legend{float:none;width:auto;display:block;margin:0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px!important}}
assets/css/admin.scss CHANGED
@@ -6,11 +6,11 @@
6
  /**
7
  * Imports
8
  */
9
- @import "bourbon";
10
- @import "mixins";
11
- @import "variables";
12
- @import "animation";
13
- @import "socicon";
14
 
15
  /**
16
  * Styling begins
@@ -32,8 +32,8 @@
32
  border-right: 1px solid #eee;
33
  box-sizing: border-box;
34
 
35
- &:after {
36
- content: "";
37
  display: block;
38
  width: 100%;
39
  height: 9999em;
@@ -59,20 +59,20 @@
59
  line-height: 20px !important;
60
  border-bottom: 1px solid #eee;
61
 
62
- &:before {
63
- @include iconbeforedashicons( "\f107" );
64
  }
65
  }
66
 
67
  &.general_options {
68
- a:before {
69
- content: "\f107";
70
  }
71
  }
72
 
73
  &.linked_icons_options {
74
- a:before {
75
- content: "\f103";
76
  }
77
  }
78
 
@@ -113,8 +113,8 @@
113
  padding: 5px 9px;
114
  line-height: 24px;
115
 
116
- &:after {
117
- content: ".";
118
  display: block;
119
  height: 0;
120
  clear: both;
@@ -182,13 +182,13 @@
182
  @include ir();
183
  font-size: 1.2em;
184
 
185
- &:before {
186
- @include icon_dashicons( "\f153" );
187
  color: #999;
188
  }
189
 
190
  &:hover {
191
- &:before {
192
  color: $red;
193
  }
194
  }
@@ -207,7 +207,7 @@
207
  font-family: 'Dashicons';
208
  }
209
 
210
- &:before {
211
  text-align: center;
212
  line-height: 1;
213
  color: #999;
@@ -218,7 +218,7 @@
218
  }
219
 
220
  &:hover {
221
- &:before {
222
  color: #333;
223
  }
224
  }
@@ -234,7 +234,7 @@
234
  .sortable_icons {
235
  padding: 0 9px;
236
  position: relative;
237
- margin: 9px 0 9px;
238
 
239
  label {
240
  display: none;
@@ -288,10 +288,10 @@
288
  vertical-align: top;
289
  }
290
 
291
- input[type="text"],
292
- input[type="email"],
293
- input[type="number"],
294
- input[type="password"] {
295
  width: 50%;
296
  float: left;
297
  }
@@ -305,10 +305,10 @@
305
  float: left;
306
  }
307
 
308
- input[type="text"].short,
309
- input[type="email"].short,
310
- input[type="number"].short,
311
- input[type="password"].short,
312
  .short {
313
  width: 50%;
314
  }
@@ -379,7 +379,7 @@
379
  height: auto;
380
  width: 100%;
381
  outline: 0;
382
- margin: 10px 0 10px;
383
  display: block;
384
 
385
  &::-webkit-input-placeholder {
@@ -420,7 +420,7 @@
420
 
421
  li {
422
  display: block;
423
- padding: 0 0 10px 0;
424
 
425
  input {
426
  width: auto;
@@ -446,7 +446,7 @@ table.wp-list-table {
446
  margin: 2px 0;
447
  display: block;
448
 
449
- input[type="text"] {
450
  margin: 0;
451
  font-size: 12px;
452
  padding: 4px 8px;
@@ -465,7 +465,7 @@ img.help_tip {
465
  }
466
 
467
  .postbox img.help_tip {
468
- margin-top: 0px;
469
  }
470
 
471
  .postbox .social-icons-help-tip {
@@ -481,7 +481,7 @@ img.help_tip {
481
  }
482
 
483
  img.tips {
484
- padding: 5px 0 0 0;
485
  }
486
 
487
  #tiptip_holder {
@@ -537,13 +537,13 @@ img.tips {
537
  #tiptip_content,
538
  .si_error_tip {
539
  color: #fff;
540
- font-size: .8em;
541
  max-width: 150px;
542
  background: #333;
543
  text-align: center;
544
  border-radius: 3px;
545
- padding: .618em 1em;
546
- box-shadow: 0 1px 3px rgba(0,0,0,0.2);
547
 
548
  code {
549
  padding: 1px;
@@ -570,8 +570,8 @@ img.tips {
570
  margin: 1.5em 1px 0 -1em;
571
  z-index: 9999999;
572
 
573
- &:after {
574
- content: "";
575
  display: block;
576
  border: 8px solid #d82223;
577
  border-right-color: transparent;
@@ -598,8 +598,8 @@ img.tips {
598
  vertical-align: middle;
599
  width: 16px;
600
 
601
- &:after {
602
- @include icon_dashicons( "\f223" );
603
  cursor: help;
604
  }
605
  }
@@ -616,10 +616,10 @@ img.tips {
616
  }
617
 
618
  .short,
619
- input[type=text].short,
620
- input[type=email].short,
621
- input[type=number].short,
622
- input[type="password"].short,
623
  .dimensions_field .wrap {
624
  width: 80%;
625
  }
@@ -643,7 +643,7 @@ img.tips {
643
  text-indent: -999px;
644
  padding: 10px;
645
 
646
- &:before {
647
  position: absolute;
648
  top: 0;
649
  right: 0;
@@ -678,6 +678,6 @@ img.tips {
678
 
679
  .social_icons_options_panel fieldset.form-field,
680
  .social_icons_options_panel p.form-field {
681
- padding: 5px 20px 5px 20px !important;
682
  }
683
  }
6
  /**
7
  * Imports
8
  */
9
+ @import 'bourbon';
10
+ @import 'mixins';
11
+ @import 'variables';
12
+ @import 'animation';
13
+ @import 'socicon';
14
 
15
  /**
16
  * Styling begins
32
  border-right: 1px solid #eee;
33
  box-sizing: border-box;
34
 
35
+ &::after {
36
+ content: '';
37
  display: block;
38
  width: 100%;
39
  height: 9999em;
59
  line-height: 20px !important;
60
  border-bottom: 1px solid #eee;
61
 
62
+ &::before {
63
+ @include iconbeforedashicons( '\f107' );
64
  }
65
  }
66
 
67
  &.general_options {
68
+ a::before {
69
+ content: '\f107';
70
  }
71
  }
72
 
73
  &.linked_icons_options {
74
+ a::before {
75
+ content: '\f103';
76
  }
77
  }
78
 
113
  padding: 5px 9px;
114
  line-height: 24px;
115
 
116
+ &::after {
117
+ content: '.';
118
  display: block;
119
  height: 0;
120
  clear: both;
182
  @include ir();
183
  font-size: 1.2em;
184
 
185
+ &::before {
186
+ @include icon_dashicons( '\f153' );
187
  color: #999;
188
  }
189
 
190
  &:hover {
191
+ &::before {
192
  color: $red;
193
  }
194
  }
207
  font-family: 'Dashicons';
208
  }
209
 
210
+ &::before {
211
  text-align: center;
212
  line-height: 1;
213
  color: #999;
218
  }
219
 
220
  &:hover {
221
+ &::before {
222
  color: #333;
223
  }
224
  }
234
  .sortable_icons {
235
  padding: 0 9px;
236
  position: relative;
237
+ margin: 9px 0;
238
 
239
  label {
240
  display: none;
288
  vertical-align: top;
289
  }
290
 
291
+ input[type='text'],
292
+ input[type='email'],
293
+ input[type='number'],
294
+ input[type='password'] {
295
  width: 50%;
296
  float: left;
297
  }
305
  float: left;
306
  }
307
 
308
+ input[type='text'].short,
309
+ input[type='email'].short,
310
+ input[type='number'].short,
311
+ input[type='password'].short,
312
  .short {
313
  width: 50%;
314
  }
379
  height: auto;
380
  width: 100%;
381
  outline: 0;
382
+ margin: 10px 0;
383
  display: block;
384
 
385
  &::-webkit-input-placeholder {
420
 
421
  li {
422
  display: block;
423
+ padding: 0 0 10px;
424
 
425
  input {
426
  width: auto;
446
  margin: 2px 0;
447
  display: block;
448
 
449
+ input[type='text'] {
450
  margin: 0;
451
  font-size: 12px;
452
  padding: 4px 8px;
465
  }
466
 
467
  .postbox img.help_tip {
468
+ margin-top: 0;
469
  }
470
 
471
  .postbox .social-icons-help-tip {
481
  }
482
 
483
  img.tips {
484
+ padding: 5px 0 0;
485
  }
486
 
487
  #tiptip_holder {
537
  #tiptip_content,
538
  .si_error_tip {
539
  color: #fff;
540
+ font-size: 0.8em;
541
  max-width: 150px;
542
  background: #333;
543
  text-align: center;
544
  border-radius: 3px;
545
+ padding: 0.618em 1em;
546
+ box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.2 );
547
 
548
  code {
549
  padding: 1px;
570
  margin: 1.5em 1px 0 -1em;
571
  z-index: 9999999;
572
 
573
+ &::after {
574
+ content: '';
575
  display: block;
576
  border: 8px solid #d82223;
577
  border-right-color: transparent;
598
  vertical-align: middle;
599
  width: 16px;
600
 
601
+ &::after {
602
+ @include icon_dashicons( '\f223' );
603
  cursor: help;
604
  }
605
  }
616
  }
617
 
618
  .short,
619
+ input[type='text'].short,
620
+ input[type='email'].short,
621
+ input[type='number'].short,
622
+ input[type='password'].short,
623
  .dimensions_field .wrap {
624
  width: 80%;
625
  }
643
  text-indent: -999px;
644
  padding: 10px;
645
 
646
+ &::before {
647
  position: absolute;
648
  top: 0;
649
  right: 0;
678
 
679
  .social_icons_options_panel fieldset.form-field,
680
  .social_icons_options_panel p.form-field {
681
+ padding: 5px 20px !important;
682
  }
683
  }
assets/css/social-icons.css CHANGED
@@ -1 +1 @@
1
- [class*=" socicon-"]:before,[class^=socicon-]:before,[data-icon]:before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" socicon-"]:before,[class^=socicon-]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem:before{content:"\e000"}.socicon-mixcloud:before{content:"\e001"}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal:before{content:"\e002"}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm:before{content:"\e003"}.socicon-istock{color:#000;background-color:#000}.socicon-istock:before{content:"\e004"}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer:before{content:"\e005"}.socicon-ello{color:#000;background-color:#000}.socicon-ello:before{content:"\e006"}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow:before{content:"\e007"}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona:before{content:"\e008"}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej:before{content:"\e009"}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz:before{content:"\e00a"}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss:before{content:"\e00b"}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal:before{content:"\e00c"}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki:before{content:"\e00d"}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb:before{content:"\e00e"}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope:before{content:"\e00f"}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook:before{content:"\e010"}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall:before{content:"\e011"}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor:before{content:"\e012"}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet:before{content:"\e013"}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads:before{content:"\e014"}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit:before{content:"\e015"}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd:before{content:"\e016"}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare:before{content:"\e017"}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer:before{content:"\e018"}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus:before{content:"\e019"}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte:before{content:"\e01a"}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp:before{content:"\e01b"}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon:before{content:"\e01c"}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse:before{content:"\e01d"}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket:before{content:"\e01e"}.socicon-mail{color:#000;background-color:#000}.socicon-mail:before{content:"\e01f"}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger:before{content:"\e020"}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati:before{content:"\e021"}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit:before{content:"\e022"}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble:before{content:"\e023"}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon:before{content:"\e024"}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg:before{content:"\e025"}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato:before{content:"\e026"}.socicon-behance{color:#000;background-color:#000}.socicon-behance:before{content:"\e027"}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious:before{content:"\e028"}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart:before{content:"\e029"}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst:before{content:"\e02a"}.socicon-play{color:#000;background-color:#000}.socicon-play:before{content:"\e02b"}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply:before{content:"\e02c"}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia:before{content:"\e02d"}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple:before{content:"\e02e"}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr:before{content:"\e02f"}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github:before{content:"\e030"}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren:before{content:"\e031"}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed:before{content:"\e032"}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine:before{content:"\e033"}.socicon-identica{color:#000;background-color:#000}.socicon-identica:before{content:"\e034"}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo:before{content:"\e035"}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga:before{content:"\e036"}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam:before{content:"\e037"}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox:before{content:"\e038"}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows:before{content:"\e039"}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq:before{content:"\e03a"}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban:before{content:"\e03b"}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup:before{content:"\e03c"}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation:before{content:"\e03d"}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android:before{content:"\e03e"}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat:before{content:"\e03f"}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter:before{content:"\e040"}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook:before{content:"\e041"}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus:before{content:"\e042"}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest:before{content:"\e043"}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare:before{content:"\e044"}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo:before{content:"\e045"}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype:before{content:"\e046"}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp:before{content:"\e047"}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner:before{content:"\e048"}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin:before{content:"\e049"}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo:before{content:"\e04a"}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing:before{content:"\e04b"}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace:before{content:"\e04c"}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud:before{content:"\e04d"}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify:before{content:"\e04e"}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark:before{content:"\e04f"}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm:before{content:"\e050"}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube:before{content:"\e051"}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo:before{content:"\e052"}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion:before{content:"\e053"}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine:before{content:"\e054"}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr:before{content:"\e055"}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px:before{content:"\e056"}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram:before{content:"\e057"}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress:before{content:"\e058"}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr:before{content:"\e059"}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch:before{content:"\e05a"}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks:before{content:"\e05b"}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon:before{content:"\e05c"}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq:before{content:"\e05d"}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug:before{content:"\e05e"}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry:before{content:"\e05f"}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo:before{content:"\e060"}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu:before{content:"\e061"}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist:before{content:"\e062"}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay:before{content:"\e063"}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb:before{content:"\e064"}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends:before{content:"\e065"}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor:before{content:"\e066"}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google:before{content:"\e067"}.socicon-yandex{color:red;background-color:red}.socicon-yandex:before{content:"\e068"}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis:before{content:"\e069"}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp:before{content:"\e06a"}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes:before{content:"\e06b"}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer:before{content:"\e06c"}.socicon-medium{color:#000;background-color:#000}.socicon-medium:before{content:"\e06d"}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram:before{content:"\e06e"}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid:before{content:"\e06f"}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement:before{content:"\e070"}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber:before{content:"\e071"}.socicon-zomato:before{content:"\e072"}.socicon-quora:before{content:"\e073"}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem:before{content:"\e074"}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo:before{content:"\e075"}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb:before{content:"\e076"}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange:before{content:"\e077"}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop:before{content:"\e078"}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak:before{content:"\e079"}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer:before{content:"\e07a"}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo:before{content:"\e07b"}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow:before{content:"\e07c"}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall:before{content:"\e07d"}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble:before{content:"\e07e"}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee:before{content:"\e07f"}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox:before{content:"\e080"}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation:before{content:"\e081"}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr:before{content:"\e082"}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet:before{content:"\e083"}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome:before{content:"\e084"}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo:before{content:"\e085"}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord:before{content:"\e086"}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu:before{content:"\e087"}.socicon-macos{color:#000;background-color:#000}.socicon-macos:before{content:"\e088"}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox:before{content:"\e089"}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes:before{content:"\e08a"}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone:before{content:"\e08b"}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch:before{content:"\e08c"}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera:before{content:"\e08d"}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft:before{content:"\e08e"}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft:before{content:"\e08f"}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase:before{content:"\e090"}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance:before{content:"\e091"}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal:before{content:"\e092"}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos:before{content:"\e093"}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde:before{content:"\e094"}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy:before{content:"\e095"}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier:before{content:"\e096"}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar:before{content:"\e097"}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate:before{content:"\e098"}.social-icons-lists .socicon{padding:10px;font-size:16px}.social-icons-lists li.social-icons-list-item{margin:4px;display:inline-block;border:none!important}.social-icons-lists li.social-icons-list-item a.social-icon{text-decoration:none}.social-icons-lists li.social-icons-list-item a.social-icon:active,.social-icons-lists li.social-icons-list-item a.social-icon:focus{outline:0}.social-icons-lists li.social-icons-list-item a.social-icon:hover .socicon{opacity:.8}.social-icons-lists li.social-icons-list-item a.social-icon span.social-icons-list-label{margin-left:4px}.social-icons-lists.show-icons-label{list-style:outside}.social-icons-lists.social-icons-greyscale .socicon{color:#fff;background-color:#555}.social-icons-lists.icons-background-rounded .socicon{border-radius:100%}.social-icons-lists.icons-background-rounded .socicon,.social-icons-lists.icons-background-square .socicon{color:#fff}.social-icons-lists.icons-background-rounded.centre,.social-icons-lists.icons-background-square.centre{padding:0;text-align:center}.social-icons-lists.icons-background-none .socicon{padding:0;background:0 0}.social-icons-lists.icons-background-none.social-icons-greyscale .socicon{color:#555}.widget .social-icons-lists.show-icons-label li.social-icons-list-item{display:block}.widget .social-icons-lists.show-icons-label.icons-background-rounded.centre,.widget .social-icons-lists.show-icons-label.icons-background-square.centre{text-align:left}
1
+ [class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.social-icons-lists .socicon{padding:10px;font-size:16px}.social-icons-lists li.social-icons-list-item{margin:4px;padding:0!important;display:inline-block;border:none!important;list-style:none!important}.social-icons-lists li.social-icons-list-item a.social-icon{text-decoration:none}.social-icons-lists li.social-icons-list-item a.social-icon:active,.social-icons-lists li.social-icons-list-item a.social-icon:focus{outline:0}.social-icons-lists li.social-icons-list-item a.social-icon:hover .socicon{opacity:.8}.social-icons-lists li.social-icons-list-item a.social-icon span.social-icons-list-label{margin-left:4px}.social-icons-lists li.social-icons-list-item::after,.social-icons-lists li.social-icons-list-item::before{visibility:hidden}.social-icons-lists.show-icons-label{list-style:outside}.social-icons-lists.social-icons-greyscale .socicon{color:#fff;background-color:#555}.social-icons-lists.icons-background-rounded .socicon{border-radius:100%}.social-icons-lists.icons-background-rounded .socicon,.social-icons-lists.icons-background-square .socicon{color:#fff}.social-icons-lists.icons-background-rounded.centre,.social-icons-lists.icons-background-square.centre{padding:0;text-align:center}.social-icons-lists.icons-background-none .socicon{padding:0;background:0 0}.social-icons-lists.icons-background-none.social-icons-greyscale .socicon{color:#555}.widget .social-icons-lists.show-icons-label li.social-icons-list-item{display:block}.widget .social-icons-lists.show-icons-label.icons-background-rounded.centre,.widget .social-icons-lists.show-icons-label.icons-background-square.centre{text-align:left}
assets/css/social-icons.scss CHANGED
@@ -6,7 +6,7 @@
6
  /**
7
  * Imports
8
  */
9
- @import "socicon";
10
 
11
  /**
12
  * Styling begins
@@ -20,8 +20,10 @@
20
 
21
  li.social-icons-list-item {
22
  margin: 4px;
 
23
  display: inline-block;
24
  border: none !important;
 
25
 
26
  a.social-icon {
27
  text-decoration: none;
@@ -39,6 +41,11 @@
39
  margin-left: 4px;
40
  }
41
  }
 
 
 
 
 
42
  }
43
 
44
  &.show-icons-label {
6
  /**
7
  * Imports
8
  */
9
+ @import 'socicon';
10
 
11
  /**
12
  * Styling begins
20
 
21
  li.social-icons-list-item {
22
  margin: 4px;
23
+ padding: 0 !important;
24
  display: inline-block;
25
  border: none !important;
26
+ list-style: none !important;
27
 
28
  a.social-icon {
29
  text-decoration: none;
41
  margin-left: 4px;
42
  }
43
  }
44
+
45
+ &::before,
46
+ &::after {
47
+ visibility: hidden;
48
+ }
49
  }
50
 
51
  &.show-icons-label {
assets/css/widgets.css CHANGED
@@ -1 +1 @@
1
- [class*=" socicon-"]:before,[class^=socicon-]:before,[data-icon]:before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" socicon-"]:before,[class^=socicon-]:before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem:before{content:"\e000"}.socicon-mixcloud:before{content:"\e001"}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal:before{content:"\e002"}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm:before{content:"\e003"}.socicon-istock{color:#000;background-color:#000}.socicon-istock:before{content:"\e004"}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer:before{content:"\e005"}.socicon-ello{color:#000;background-color:#000}.socicon-ello:before{content:"\e006"}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow:before{content:"\e007"}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona:before{content:"\e008"}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej:before{content:"\e009"}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz:before{content:"\e00a"}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss:before{content:"\e00b"}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal:before{content:"\e00c"}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki:before{content:"\e00d"}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb:before{content:"\e00e"}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope:before{content:"\e00f"}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook:before{content:"\e010"}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall:before{content:"\e011"}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor:before{content:"\e012"}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet:before{content:"\e013"}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads:before{content:"\e014"}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit:before{content:"\e015"}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd:before{content:"\e016"}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare:before{content:"\e017"}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer:before{content:"\e018"}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus:before{content:"\e019"}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte:before{content:"\e01a"}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp:before{content:"\e01b"}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon:before{content:"\e01c"}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse:before{content:"\e01d"}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket:before{content:"\e01e"}.socicon-mail{color:#000;background-color:#000}.socicon-mail:before{content:"\e01f"}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger:before{content:"\e020"}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati:before{content:"\e021"}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit:before{content:"\e022"}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble:before{content:"\e023"}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon:before{content:"\e024"}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg:before{content:"\e025"}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato:before{content:"\e026"}.socicon-behance{color:#000;background-color:#000}.socicon-behance:before{content:"\e027"}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious:before{content:"\e028"}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart:before{content:"\e029"}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst:before{content:"\e02a"}.socicon-play{color:#000;background-color:#000}.socicon-play:before{content:"\e02b"}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply:before{content:"\e02c"}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia:before{content:"\e02d"}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple:before{content:"\e02e"}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr:before{content:"\e02f"}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github:before{content:"\e030"}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren:before{content:"\e031"}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed:before{content:"\e032"}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine:before{content:"\e033"}.socicon-identica{color:#000;background-color:#000}.socicon-identica:before{content:"\e034"}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo:before{content:"\e035"}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga:before{content:"\e036"}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam:before{content:"\e037"}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox:before{content:"\e038"}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows:before{content:"\e039"}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq:before{content:"\e03a"}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban:before{content:"\e03b"}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup:before{content:"\e03c"}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation:before{content:"\e03d"}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android:before{content:"\e03e"}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat:before{content:"\e03f"}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter:before{content:"\e040"}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook:before{content:"\e041"}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus:before{content:"\e042"}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest:before{content:"\e043"}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare:before{content:"\e044"}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo:before{content:"\e045"}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype:before{content:"\e046"}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp:before{content:"\e047"}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner:before{content:"\e048"}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin:before{content:"\e049"}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo:before{content:"\e04a"}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing:before{content:"\e04b"}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace:before{content:"\e04c"}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud:before{content:"\e04d"}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify:before{content:"\e04e"}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark:before{content:"\e04f"}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm:before{content:"\e050"}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube:before{content:"\e051"}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo:before{content:"\e052"}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion:before{content:"\e053"}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine:before{content:"\e054"}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr:before{content:"\e055"}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px:before{content:"\e056"}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram:before{content:"\e057"}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress:before{content:"\e058"}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr:before{content:"\e059"}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch:before{content:"\e05a"}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks:before{content:"\e05b"}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon:before{content:"\e05c"}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq:before{content:"\e05d"}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug:before{content:"\e05e"}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry:before{content:"\e05f"}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo:before{content:"\e060"}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu:before{content:"\e061"}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist:before{content:"\e062"}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay:before{content:"\e063"}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb:before{content:"\e064"}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends:before{content:"\e065"}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor:before{content:"\e066"}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google:before{content:"\e067"}.socicon-yandex{color:red;background-color:red}.socicon-yandex:before{content:"\e068"}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis:before{content:"\e069"}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp:before{content:"\e06a"}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes:before{content:"\e06b"}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer:before{content:"\e06c"}.socicon-medium{color:#000;background-color:#000}.socicon-medium:before{content:"\e06d"}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram:before{content:"\e06e"}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid:before{content:"\e06f"}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement:before{content:"\e070"}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber:before{content:"\e071"}.socicon-zomato:before{content:"\e072"}.socicon-quora:before{content:"\e073"}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem:before{content:"\e074"}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo:before{content:"\e075"}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb:before{content:"\e076"}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange:before{content:"\e077"}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop:before{content:"\e078"}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak:before{content:"\e079"}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer:before{content:"\e07a"}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo:before{content:"\e07b"}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow:before{content:"\e07c"}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall:before{content:"\e07d"}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble:before{content:"\e07e"}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee:before{content:"\e07f"}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox:before{content:"\e080"}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation:before{content:"\e081"}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr:before{content:"\e082"}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet:before{content:"\e083"}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome:before{content:"\e084"}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo:before{content:"\e085"}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord:before{content:"\e086"}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu:before{content:"\e087"}.socicon-macos{color:#000;background-color:#000}.socicon-macos:before{content:"\e088"}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox:before{content:"\e089"}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes:before{content:"\e08a"}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone:before{content:"\e08b"}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch:before{content:"\e08c"}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera:before{content:"\e08d"}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft:before{content:"\e08e"}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft:before{content:"\e08f"}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase:before{content:"\e090"}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance:before{content:"\e091"}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal:before{content:"\e092"}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos:before{content:"\e093"}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde:before{content:"\e094"}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy:before{content:"\e095"}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier:before{content:"\e096"}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar:before{content:"\e097"}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate:before{content:"\e098"}.social-icons-field-handle{float:left;cursor:move;margin-top:12px;margin-left:-100%}.social-icons-field-handle.dashicons{width:30px;margin-top:18px}.social-icons-field-handle.socicon{color:#fff;padding:6px}.social-icons-field-remove{width:30px;float:left;display:block;text-align:right;margin-top:20px;margin-left:-30px;text-decoration:none}.social-icons-field-remove:active,.social-icons-field-remove:focus{outline:0;box-shadow:none}.social-icons-field-remove span.dashicons:hover{color:#a00}.social-icons-add-button{margin-bottom:10px}.wp-customizer .social-icons-add-button{margin-top:1em}ul.social-icons-list{border:1px solid #ddd}ul.social-icons-list li.social-icons-field{margin:-1px;padding:10px;display:block;border:1px solid #ddd}ul.social-icons-list li.social-icons-field::after{clear:both;content:"";display:table}ul.social-icons-list li.social-icons-field:last-child{border-bottom:none}ul.social-icons-list li.social-icons-field .social-icons-wrap{float:left;width:100%}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs{margin-left:40px;margin-right:30px}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs input.social-icons-field-label[type=text]{margin-top:2px}ul.social-icons-list li.social-icons-field.ui-sortable-helper{border:1px dashed #999}.hide-icons-label .social-icons-field-label{display:none}.hide-icons-label .social-icons-field-handle{margin-top:-4px}.hide-icons-label .social-icons-field-handle.dashicons,.hide-icons-label .social-icons-field-remove{margin-top:3px}
1
+ [class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.social-icons-field-handle{float:left;cursor:move;margin-top:12px;margin-left:-100%}.social-icons-field-handle.dashicons{width:30px;margin-top:18px}.social-icons-field-handle.socicon{color:#fff;padding:6px}.social-icons-field-remove{width:30px;float:left;display:block;text-align:right;margin-top:20px;margin-left:-30px;text-decoration:none}.social-icons-field-remove:active,.social-icons-field-remove:focus{outline:0;box-shadow:none}.social-icons-field-remove span.dashicons:hover{color:#a00}.social-icons-add-button{margin-bottom:10px}.wp-customizer .social-icons-add-button{margin-top:1em}ul.social-icons-list{border:1px solid #ddd}ul.social-icons-list li.social-icons-field{margin:-1px;padding:10px;display:block;border:1px solid #ddd}ul.social-icons-list li.social-icons-field::after{clear:both;content:"";display:table}ul.social-icons-list li.social-icons-field:last-child{border-bottom:none}ul.social-icons-list li.social-icons-field .social-icons-wrap{float:left;width:100%}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs{margin-left:40px;margin-right:30px}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs input.social-icons-field-label[type=text]{margin-top:2px}ul.social-icons-list li.social-icons-field.ui-sortable-helper{border:1px dashed #999}.hide-icons-label .social-icons-field-label{display:none}.hide-icons-label .social-icons-field-handle{margin-top:-4px}.hide-icons-label .social-icons-field-handle.dashicons,.hide-icons-label .social-icons-field-remove{margin-top:3px}
assets/css/widgets.scss CHANGED
@@ -6,8 +6,8 @@
6
  /**
7
  * Imports
8
  */
9
- @import "bourbon";
10
- @import "socicon";
11
 
12
  /**
13
  * Styling begins
@@ -85,7 +85,7 @@ ul.social-icons-list {
85
  margin-left: 40px;
86
  margin-right: 30px;
87
 
88
- input.social-icons-field-label[type="text"] {
89
  margin-top: 2px;
90
  }
91
  }
6
  /**
7
  * Imports
8
  */
9
+ @import 'bourbon';
10
+ @import 'socicon';
11
 
12
  /**
13
  * Styling begins
85
  margin-left: 40px;
86
  margin-right: 30px;
87
 
88
+ input.social-icons-field-label[type='text'] {
89
  margin-top: 2px;
90
  }
91
  }
assets/js/admin/widgets.js CHANGED
@@ -67,6 +67,23 @@ jQuery( function ( $ ) {
67
  }
68
  });
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  // Remove Social Icons.
71
  $( document.body ).on( 'click', '.social-icons-field-remove', function( e ) {
72
  e.preventDefault();
67
  }
68
  });
69
 
70
+ // Make repeater field siteorigin compat.
71
+ $( document.body ).on( 'panelsopen', function( e ) {
72
+ var target = $( e.target );
73
+
74
+ // Check that this is for our widget class.
75
+ if ( ! target.has( 'social-icons-list' ) ) {
76
+ return false;
77
+ }
78
+
79
+ target.addClass( 'widget-content' );
80
+
81
+ widgetSortable( target );
82
+
83
+ // Trigger hidden options.
84
+ $( document.body ).trigger( 'si-init-hidden-options' );
85
+ });
86
+
87
  // Remove Social Icons.
88
  $( document.body ).on( 'click', '.social-icons-field-remove', function( e ) {
89
  e.preventDefault();
assets/js/admin/widgets.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){function b(a){a.find(".social-icons-list").sortable({items:"li",cursor:"move",axis:"y",handle:"span.socicon",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65})}a(document.body).on("si-init-hidden-options",function(){a("input.show_label").change(function(){var b=a(this).parents(".widget-content").find(".social-icons-list");a(this).is(":checked")?b.removeClass("hide-icons-label"):b.addClass("hide-icons-label")}).change()}).trigger("si-init-hidden-options"),a(document.body).on("click",".social-icons-add-button button",function(b){b.preventDefault();var c=a(this).parents(".widget-content").find(".social-icons-list"),d=c.data("url-field-id"),e=c.data("url-field-name"),f=c.data("label-field-id"),g=c.data("label-field-name"),h=a(a.trim(a("#tmpl-social-icons-field").html()));h.find(".social-icons-field-url").attr("id",d).attr("name",e+"[]"),h.find(".social-icons-field-label").attr("id",f).attr("name",g+"[]"),c.append(h),c.last().find("input:first-child").trigger("focus"),a(this).parents(".widget-content").find(".social-icons-list:last input:first-child").trigger("focus")}),a(document.body).on("keyup",".social-icons-field-url",function(){var b,c=a(this),d=!1;(b=c.val().toLowerCase())&&(a.each(social_icons_admin_widgets.supported_url_icon,function(a,c){if(b.indexOf(a)!==-1)return d=c,!0}),d||a.each(social_icons_admin_widgets.allowed_socicons,function(a,c){if(b.indexOf(c)!==-1)return d=c,!0})),d?(a(".social-icons-add-button").find("button").removeAttr("disabled"),c.parents(".social-icons-field").find(".social-icons-field-handle").attr("class","social-icons-field-handle socicon socicon-"+d)):(a(".social-icons-add-button").find("button").attr("disabled","disabled"),c.parents(".social-icons-field").find(".social-icons-field-handle").attr("class","social-icons-field-handle dashicons dashicons-plus"))}),a(document.body).on("click",".social-icons-field-remove",function(b){b.preventDefault(),a(this).parents(".social-icons-field").remove()}),a(document.body).on("click","div.widget[id*=themegrill_social_icons] .widget-title, div.widget[id*=themegrill_social_icons] .widget-title-action",function(){a(this).parents("#available-widgets").length||b(a(this).parents(".widget[id*=themegrill_social_icons]"))}),a(document).on("widget-added widget-updated",function(c,d){d.is("[id*=themegrill_social_icons]")&&(c.preventDefault(),b(d)),a(document.body).trigger("si-init-hidden-options")})});
1
+ jQuery(function(a){function b(a){a.find(".social-icons-list").sortable({items:"li",cursor:"move",axis:"y",handle:"span.socicon",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65})}a(document.body).on("si-init-hidden-options",function(){a("input.show_label").change(function(){var b=a(this).parents(".widget-content").find(".social-icons-list");a(this).is(":checked")?b.removeClass("hide-icons-label"):b.addClass("hide-icons-label")}).change()}).trigger("si-init-hidden-options"),a(document.body).on("click",".social-icons-add-button button",function(b){b.preventDefault();var c=a(this).parents(".widget-content").find(".social-icons-list"),d=c.data("url-field-id"),e=c.data("url-field-name"),f=c.data("label-field-id"),g=c.data("label-field-name"),h=a(a.trim(a("#tmpl-social-icons-field").html()));h.find(".social-icons-field-url").attr("id",d).attr("name",e+"[]"),h.find(".social-icons-field-label").attr("id",f).attr("name",g+"[]"),c.append(h),c.last().find("input:first-child").trigger("focus"),a(this).parents(".widget-content").find(".social-icons-list:last input:first-child").trigger("focus")}),a(document.body).on("keyup",".social-icons-field-url",function(){var b,c=a(this),d=!1;(b=c.val().toLowerCase())&&(a.each(social_icons_admin_widgets.supported_url_icon,function(a,c){if(b.indexOf(a)!==-1)return d=c,!0}),d||a.each(social_icons_admin_widgets.allowed_socicons,function(a,c){if(b.indexOf(c)!==-1)return d=c,!0})),d?(a(".social-icons-add-button").find("button").removeAttr("disabled"),c.parents(".social-icons-field").find(".social-icons-field-handle").attr("class","social-icons-field-handle socicon socicon-"+d)):(a(".social-icons-add-button").find("button").attr("disabled","disabled"),c.parents(".social-icons-field").find(".social-icons-field-handle").attr("class","social-icons-field-handle dashicons dashicons-plus"))}),a(document.body).on("panelsopen",function(c){var d=a(c.target);return!!d.has("social-icons-list")&&(d.addClass("widget-content"),b(d),void a(document.body).trigger("si-init-hidden-options"))}),a(document.body).on("click",".social-icons-field-remove",function(b){b.preventDefault(),a(this).parents(".social-icons-field").remove()}),a(document.body).on("click","div.widget[id*=themegrill_social_icons] .widget-title, div.widget[id*=themegrill_social_icons] .widget-title-action",function(){a(this).parents("#available-widgets").length||b(a(this).parents(".widget[id*=themegrill_social_icons]"))}),a(document).on("widget-added widget-updated",function(c,d){d.is("[id*=themegrill_social_icons]")&&(c.preventDefault(),b(d)),a(document.body).trigger("si-init-hidden-options")})});
composer.lock ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "hash": "9b8e24e810e62cd0b97950a60f89b9ca",
8
+ "content-hash": "f6bcf8dc0e9c8b677a415944833f056f",
9
+ "packages": [
10
+ {
11
+ "name": "composer/installers",
12
+ "version": "v1.2.0",
13
+ "source": {
14
+ "type": "git",
15
+ "url": "https://github.com/composer/installers.git",
16
+ "reference": "d78064c68299743e0161004f2de3a0204e33b804"
17
+ },
18
+ "dist": {
19
+ "type": "zip",
20
+ "url": "https://api.github.com/repos/composer/installers/zipball/d78064c68299743e0161004f2de3a0204e33b804",
21
+ "reference": "d78064c68299743e0161004f2de3a0204e33b804",
22
+ "shasum": ""
23
+ },
24
+ "require": {
25
+ "composer-plugin-api": "^1.0"
26
+ },
27
+ "replace": {
28
+ "roundcube/plugin-installer": "*",
29
+ "shama/baton": "*"
30
+ },
31
+ "require-dev": {
32
+ "composer/composer": "1.0.*@dev",
33
+ "phpunit/phpunit": "4.1.*"
34
+ },
35
+ "type": "composer-plugin",
36
+ "extra": {
37
+ "class": "Composer\\Installers\\Plugin",
38
+ "branch-alias": {
39
+ "dev-master": "1.0-dev"
40
+ }
41
+ },
42
+ "autoload": {
43
+ "psr-4": {
44
+ "Composer\\Installers\\": "src/Composer/Installers"
45
+ }
46
+ },
47
+ "notification-url": "https://packagist.org/downloads/",
48
+ "license": [
49
+ "MIT"
50
+ ],
51
+ "authors": [
52
+ {
53
+ "name": "Kyle Robinson Young",
54
+ "email": "kyle@dontkry.com",
55
+ "homepage": "https://github.com/shama"
56
+ }
57
+ ],
58
+ "description": "A multi-framework Composer library installer",
59
+ "homepage": "https://composer.github.io/installers/",
60
+ "keywords": [
61
+ "Craft",
62
+ "Dolibarr",
63
+ "Hurad",
64
+ "ImageCMS",
65
+ "MODX Evo",
66
+ "Mautic",
67
+ "OXID",
68
+ "Plentymarkets",
69
+ "RadPHP",
70
+ "SMF",
71
+ "Thelia",
72
+ "WolfCMS",
73
+ "agl",
74
+ "aimeos",
75
+ "annotatecms",
76
+ "attogram",
77
+ "bitrix",
78
+ "cakephp",
79
+ "chef",
80
+ "cockpit",
81
+ "codeigniter",
82
+ "concrete5",
83
+ "croogo",
84
+ "dokuwiki",
85
+ "drupal",
86
+ "elgg",
87
+ "expressionengine",
88
+ "fuelphp",
89
+ "grav",
90
+ "installer",
91
+ "joomla",
92
+ "kohana",
93
+ "laravel",
94
+ "lithium",
95
+ "magento",
96
+ "mako",
97
+ "mediawiki",
98
+ "modulework",
99
+ "moodle",
100
+ "phpbb",
101
+ "piwik",
102
+ "ppi",
103
+ "puppet",
104
+ "reindex",
105
+ "roundcube",
106
+ "shopware",
107
+ "silverstripe",
108
+ "symfony",
109
+ "typo3",
110
+ "wordpress",
111
+ "yawik",
112
+ "zend",
113
+ "zikula"
114
+ ],
115
+ "time": "2016-08-13 20:53:52"
116
+ }
117
+ ],
118
+ "packages-dev": [
119
+ {
120
+ "name": "simplyadmire/composer-plugins",
121
+ "version": "dev-master",
122
+ "source": {
123
+ "type": "git",
124
+ "url": "https://github.com/SimplyAdmire/ComposerPlugins.git",
125
+ "reference": "d8380f670694c1c2330b22591ca74adc82cffe19"
126
+ },
127
+ "dist": {
128
+ "type": "zip",
129
+ "url": "https://api.github.com/repos/SimplyAdmire/ComposerPlugins/zipball/d8380f670694c1c2330b22591ca74adc82cffe19",
130
+ "reference": "d8380f670694c1c2330b22591ca74adc82cffe19",
131
+ "shasum": ""
132
+ },
133
+ "require": {
134
+ "composer-plugin-api": "^1.0",
135
+ "squizlabs/php_codesniffer": "*"
136
+ },
137
+ "type": "composer-plugin",
138
+ "extra": {
139
+ "class": [
140
+ "SimplyAdmire\\ComposerPlugins\\PhpCodesnifferStandardInstallerPlugin"
141
+ ]
142
+ },
143
+ "autoload": {
144
+ "psr-0": {
145
+ "SimplyAdmire\\ComposerPlugins": ""
146
+ }
147
+ },
148
+ "notification-url": "https://packagist.org/downloads/",
149
+ "license": [
150
+ "LGPL-3.0+"
151
+ ],
152
+ "authors": [
153
+ {
154
+ "name": "Rens Admiraal",
155
+ "email": "rens@simplyadmire.com",
156
+ "role": "lead"
157
+ }
158
+ ],
159
+ "description": "Composer plugin for installing PHP_CodeSniffer standards",
160
+ "keywords": [
161
+ "PHP_CodeSniffer",
162
+ "TYPO3 CMS",
163
+ "TYPO3 Flow",
164
+ "TYPO3 Neos",
165
+ "phpcs",
166
+ "standards",
167
+ "typo3"
168
+ ],
169
+ "time": "2016-05-12 11:58:38"
170
+ },
171
+ {
172
+ "name": "squizlabs/php_codesniffer",
173
+ "version": "2.7.1",
174
+ "source": {
175
+ "type": "git",
176
+ "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
177
+ "reference": "9b324f3a1132459a7274a0ace2e1b766ba80930f"
178
+ },
179
+ "dist": {
180
+ "type": "zip",
181
+ "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/9b324f3a1132459a7274a0ace2e1b766ba80930f",
182
+ "reference": "9b324f3a1132459a7274a0ace2e1b766ba80930f",
183
+ "shasum": ""
184
+ },
185
+ "require": {
186
+ "ext-simplexml": "*",
187
+ "ext-tokenizer": "*",
188
+ "ext-xmlwriter": "*",
189
+ "php": ">=5.1.2"
190
+ },
191
+ "require-dev": {
192
+ "phpunit/phpunit": "~4.0"
193
+ },
194
+ "bin": [
195
+ "scripts/phpcs",
196
+ "scripts/phpcbf"
197
+ ],
198
+ "type": "library",
199
+ "extra": {
200
+ "branch-alias": {
201
+ "dev-master": "2.x-dev"
202
+ }
203
+ },
204
+ "autoload": {
205
+ "classmap": [
206
+ "CodeSniffer.php",
207
+ "CodeSniffer/CLI.php",
208
+ "CodeSniffer/Exception.php",
209
+ "CodeSniffer/File.php",
210
+ "CodeSniffer/Fixer.php",
211
+ "CodeSniffer/Report.php",
212
+ "CodeSniffer/Reporting.php",
213
+ "CodeSniffer/Sniff.php",
214
+ "CodeSniffer/Tokens.php",
215
+ "CodeSniffer/Reports/",
216
+ "CodeSniffer/Tokenizers/",
217
+ "CodeSniffer/DocGenerators/",
218
+ "CodeSniffer/Standards/AbstractPatternSniff.php",
219
+ "CodeSniffer/Standards/AbstractScopeSniff.php",
220
+ "CodeSniffer/Standards/AbstractVariableSniff.php",
221
+ "CodeSniffer/Standards/IncorrectPatternException.php",
222
+ "CodeSniffer/Standards/Generic/Sniffs/",
223
+ "CodeSniffer/Standards/MySource/Sniffs/",
224
+ "CodeSniffer/Standards/PEAR/Sniffs/",
225
+ "CodeSniffer/Standards/PSR1/Sniffs/",
226
+ "CodeSniffer/Standards/PSR2/Sniffs/",
227
+ "CodeSniffer/Standards/Squiz/Sniffs/",
228
+ "CodeSniffer/Standards/Zend/Sniffs/"
229
+ ]
230
+ },
231
+ "notification-url": "https://packagist.org/downloads/",
232
+ "license": [
233
+ "BSD-3-Clause"
234
+ ],
235
+ "authors": [
236
+ {
237
+ "name": "Greg Sherwood",
238
+ "role": "lead"
239
+ }
240
+ ],
241
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
242
+ "homepage": "http://www.squizlabs.com/php-codesniffer",
243
+ "keywords": [
244
+ "phpcs",
245
+ "standards"
246
+ ],
247
+ "time": "2016-11-30 04:02:31"
248
+ },
249
+ {
250
+ "name": "wp-coding-standards/wpcs",
251
+ "version": "0.10.0",
252
+ "source": {
253
+ "type": "git",
254
+ "url": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git",
255
+ "reference": "b39490465f6fd7375743a395019cd597e12119c9"
256
+ },
257
+ "dist": {
258
+ "type": "zip",
259
+ "url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/b39490465f6fd7375743a395019cd597e12119c9",
260
+ "reference": "b39490465f6fd7375743a395019cd597e12119c9",
261
+ "shasum": ""
262
+ },
263
+ "require": {
264
+ "squizlabs/php_codesniffer": "^2.6"
265
+ },
266
+ "type": "library",
267
+ "notification-url": "https://packagist.org/downloads/",
268
+ "license": [
269
+ "MIT"
270
+ ],
271
+ "authors": [
272
+ {
273
+ "name": "Contributors",
274
+ "homepage": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/graphs/contributors"
275
+ }
276
+ ],
277
+ "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
278
+ "keywords": [
279
+ "phpcs",
280
+ "standards",
281
+ "wordpress"
282
+ ],
283
+ "time": "2016-08-29 20:04:47"
284
+ }
285
+ ],
286
+ "aliases": [],
287
+ "minimum-stability": "stable",
288
+ "stability-flags": {
289
+ "simplyadmire/composer-plugins": 20
290
+ },
291
+ "prefer-stable": false,
292
+ "prefer-lowest": false,
293
+ "platform": [],
294
+ "platform-dev": []
295
+ }
includes/abstracts/abstract-si-widget.php CHANGED
@@ -54,7 +54,7 @@ abstract class SI_Widget extends WP_Widget {
54
  $widget_ops = array(
55
  'classname' => $this->widget_cssclass,
56
  'description' => $this->widget_description,
57
- 'customize_selective_refresh' => true
58
  );
59
 
60
  parent::__construct( $this->widget_id, $this->widget_name, $widget_ops );
54
  $widget_ops = array(
55
  'classname' => $this->widget_cssclass,
56
  'description' => $this->widget_description,
57
+ 'customize_selective_refresh' => true,
58
  );
59
 
60
  parent::__construct( $this->widget_id, $this->widget_name, $widget_ops );
includes/admin/class-si-admin-assets.php CHANGED
@@ -26,6 +26,7 @@ class SI_Admin_Assets {
26
  public function __construct() {
27
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_styles' ) );
28
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
 
29
  }
30
 
31
  /**
@@ -66,6 +67,8 @@ class SI_Admin_Assets {
66
  wp_register_script( 'social-icons-admin', SI()->plugin_url() . '/assets/js/admin/admin' . $suffix . '.js', array( 'jquery', 'jquery-ui-sortable', 'jquery-ui-widget', 'jquery-ui-core', 'jquery-tiptip' ), SI_VERSION );
67
  wp_register_script( 'si-admin-meta-boxes', SI()->plugin_url() . '/assets/js/admin/meta-boxes' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'jquery-tiptip' ), SI_VERSION );
68
  wp_register_script( 'jquery-tiptip', SI()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), SI_VERSION, true );
 
 
69
 
70
  // Localize socicons.
71
  $socicons_params = array(
@@ -73,33 +76,34 @@ class SI_Admin_Assets {
73
  'supported_url_icon' => si_get_supported_url_icon(),
74
  );
75
 
 
 
 
76
  // Social Icons admin pages.
77
  if ( in_array( $screen_id, si_get_screen_ids() ) ) {
78
  wp_enqueue_script( 'social-icons-admin' );
79
  wp_enqueue_script( 'jquery-ui-sortable' );
80
  wp_enqueue_script( 'jquery-ui-autocomplete' );
81
-
82
- $params = array(
83
- 'ajax_url' => admin_url( 'admin-ajax.php' )
84
- );
85
-
86
- wp_localize_script( 'social-icons-admin', 'social_icons_admin', $params );
87
  }
88
 
89
  // Meta boxes.
90
  if ( in_array( $screen_id, array( 'social_icon', 'edit-social_icon' ) ) ) {
91
- wp_register_script( 'si-admin-group-meta-boxes', SI()->plugin_url() . '/assets/js/admin/meta-boxes-group' . $suffix . '.js', array( 'si-admin-meta-boxes' ), SI_VERSION );
92
- wp_localize_script( 'si-admin-group-meta-boxes', 'social_icons_admin_meta_boxes_group', $socicons_params );
93
  wp_enqueue_script( 'si-admin-group-meta-boxes' );
94
  }
95
 
96
  // Widgets Specific.
97
  if ( in_array( $screen_id, array( 'widgets', 'customize' ) ) ) {
98
- wp_register_script( 'si-admin-widgets', SI()->plugin_url() . '/assets/js/admin/widgets' . $suffix . '.js', array( 'jquery' ), SI_VERSION );
99
- wp_localize_script( 'si-admin-widgets', 'social_icons_admin_widgets', $socicons_params );
100
  wp_enqueue_script( 'si-admin-widgets' );
101
  }
102
  }
 
 
 
 
 
 
 
 
103
  }
104
 
105
  new SI_Admin_Assets();
26
  public function __construct() {
27
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_styles' ) );
28
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
29
+ add_action( 'siteorigin_panel_enqueue_admin_scripts', array( $this, 'siteorigin_panel_scripts' ) );
30
  }
31
 
32
  /**
67
  wp_register_script( 'social-icons-admin', SI()->plugin_url() . '/assets/js/admin/admin' . $suffix . '.js', array( 'jquery', 'jquery-ui-sortable', 'jquery-ui-widget', 'jquery-ui-core', 'jquery-tiptip' ), SI_VERSION );
68
  wp_register_script( 'si-admin-meta-boxes', SI()->plugin_url() . '/assets/js/admin/meta-boxes' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'jquery-tiptip' ), SI_VERSION );
69
  wp_register_script( 'jquery-tiptip', SI()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), SI_VERSION, true );
70
+ wp_register_script( 'si-admin-widgets', SI()->plugin_url() . '/assets/js/admin/widgets' . $suffix . '.js', array( 'jquery' ), SI_VERSION );
71
+ wp_register_script( 'si-admin-group-meta-boxes', SI()->plugin_url() . '/assets/js/admin/meta-boxes-group' . $suffix . '.js', array( 'si-admin-meta-boxes' ), SI_VERSION );
72
 
73
  // Localize socicons.
74
  $socicons_params = array(
76
  'supported_url_icon' => si_get_supported_url_icon(),
77
  );
78
 
79
+ wp_localize_script( 'si-admin-widgets', 'social_icons_admin_widgets', $socicons_params );
80
+ wp_localize_script( 'si-admin-group-meta-boxes', 'social_icons_admin_meta_boxes_group', $socicons_params );
81
+
82
  // Social Icons admin pages.
83
  if ( in_array( $screen_id, si_get_screen_ids() ) ) {
84
  wp_enqueue_script( 'social-icons-admin' );
85
  wp_enqueue_script( 'jquery-ui-sortable' );
86
  wp_enqueue_script( 'jquery-ui-autocomplete' );
 
 
 
 
 
 
87
  }
88
 
89
  // Meta boxes.
90
  if ( in_array( $screen_id, array( 'social_icon', 'edit-social_icon' ) ) ) {
 
 
91
  wp_enqueue_script( 'si-admin-group-meta-boxes' );
92
  }
93
 
94
  // Widgets Specific.
95
  if ( in_array( $screen_id, array( 'widgets', 'customize' ) ) ) {
 
 
96
  wp_enqueue_script( 'si-admin-widgets' );
97
  }
98
  }
99
+
100
+ /**
101
+ * Enqueue siteorigin panel scripts.
102
+ */
103
+ public function siteorigin_panel_scripts() {
104
+ wp_enqueue_script( 'si-admin-widgets' );
105
+ wp_enqueue_style( 'social-icons-admin-widgets' );
106
+ }
107
  }
108
 
109
  new SI_Admin_Assets();
includes/admin/class-si-admin-post-types.php CHANGED
@@ -40,7 +40,7 @@ class SI_Admin_Post_Types {
40
  add_action( 'edit_form_after_title', array( $this, 'edit_form_after_title' ) );
41
 
42
  // Meta-Box Class
43
- include_once( 'class-si-admin-meta-boxes.php' );
44
 
45
  // Disable post type view mode options
46
  add_filter( 'view_mode_post_types', array( $this, 'disable_view_mode_options' ) );
@@ -66,7 +66,7 @@ class SI_Admin_Post_Types {
66
  8 => __( 'Social Icon submitted.', 'social-icons' ),
67
  9 => sprintf( __( 'Social Icon scheduled for: <strong>%1$s</strong>.', 'social-icons' ),
68
  date_i18n( __( 'M j, Y @ G:i', 'social-icons' ), strtotime( $post->post_date ) ) ),
69
- 10 => __( 'Social Icon draft updated.', 'social-icons' )
70
  );
71
 
72
  return $messages;
@@ -100,7 +100,7 @@ class SI_Admin_Post_Types {
100
  $columns = array();
101
  $columns['cb'] = $existing_columns['cb'];
102
  $columns['name'] = __( 'Name', 'social-icons' );
103
- $columns['shortcode'] = __( 'Shortcode', 'social-icons' ) . si_help_tip( __( 'Copy and paste the shortcode on your post, page to render social icons.', 'social-icons') );
104
  $columns['author'] = __( 'Author', 'social-icons' );
105
  $columns['date'] = __( 'Date', 'social-icons' );
106
 
@@ -195,7 +195,7 @@ class SI_Admin_Post_Types {
195
  public function social_icon_sortable_columns( $columns ) {
196
  $custom = array(
197
  'name' => 'title',
198
- 'author' => 'author'
199
  );
200
  return wp_parse_args( $custom, $columns );
201
  }
40
  add_action( 'edit_form_after_title', array( $this, 'edit_form_after_title' ) );
41
 
42
  // Meta-Box Class
43
+ include_once( dirname( __FILE__ ) . '/class-si-admin-meta-boxes.php' );
44
 
45
  // Disable post type view mode options
46
  add_filter( 'view_mode_post_types', array( $this, 'disable_view_mode_options' ) );
66
  8 => __( 'Social Icon submitted.', 'social-icons' ),
67
  9 => sprintf( __( 'Social Icon scheduled for: <strong>%1$s</strong>.', 'social-icons' ),
68
  date_i18n( __( 'M j, Y @ G:i', 'social-icons' ), strtotime( $post->post_date ) ) ),
69
+ 10 => __( 'Social Icon draft updated.', 'social-icons' ),
70
  );
71
 
72
  return $messages;
100
  $columns = array();
101
  $columns['cb'] = $existing_columns['cb'];
102
  $columns['name'] = __( 'Name', 'social-icons' );
103
+ $columns['shortcode'] = __( 'Shortcode', 'social-icons' ) . si_help_tip( __( 'Copy and paste the shortcode on your post, page to render social icons.', 'social-icons' ) );
104
  $columns['author'] = __( 'Author', 'social-icons' );
105
  $columns['date'] = __( 'Date', 'social-icons' );
106
 
195
  public function social_icon_sortable_columns( $columns ) {
196
  $custom = array(
197
  'name' => 'title',
198
+ 'author' => 'author',
199
  );
200
  return wp_parse_args( $custom, $columns );
201
  }
includes/admin/class-si-admin.php CHANGED
@@ -31,10 +31,10 @@ class SI_Admin {
31
  * Include any classes we need within admin.
32
  */
33
  public function includes() {
34
- include_once( 'functions-si-admin.php' );
35
- include_once( 'functions-si-meta-box.php' );
36
- include_once( 'class-si-admin-assets.php' );
37
- include_once( 'class-si-admin-post-types.php' );
38
  }
39
 
40
  /**
@@ -53,7 +53,7 @@ class SI_Admin {
53
  if ( isset( $current_screen->id ) && apply_filters( 'social_icons_display_admin_footer_text', in_array( $current_screen->id, $si_pages ) ) ) {
54
  // Change the footer text
55
  if ( ! get_option( 'social_icons_admin_footer_text_rated' ) ) {
56
- $footer_text = sprintf( __( 'If you like <strong>Social Icons</strong> please leave us a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s rating. A huge thanks in advance!', 'social-icons' ), '<a href="https://wordpress.org/support/view/plugin-reviews/social-icons?filter=5#postform" target="_blank" class="si-rating-link" data-rated="' . esc_attr__( 'Thanks :)', 'social-icons' ) . '">', '</a>' );
57
  si_enqueue_js( "
58
  jQuery( 'a.si-rating-link' ).click( function() {
59
  jQuery.post( '" . SI()->ajax_url() . "', { action: 'social_icons_rated' } );
31
  * Include any classes we need within admin.
32
  */
33
  public function includes() {
34
+ include_once( dirname( __FILE__ ) . '/functions-si-admin.php' );
35
+ include_once( dirname( __FILE__ ) . '/functions-si-meta-box.php' );
36
+ include_once( dirname( __FILE__ ) . '/class-si-admin-assets.php' );
37
+ include_once( dirname( __FILE__ ) . '/class-si-admin-post-types.php' );
38
  }
39
 
40
  /**
53
  if ( isset( $current_screen->id ) && apply_filters( 'social_icons_display_admin_footer_text', in_array( $current_screen->id, $si_pages ) ) ) {
54
  // Change the footer text
55
  if ( ! get_option( 'social_icons_admin_footer_text_rated' ) ) {
56
+ $footer_text = sprintf( __( 'If you like <strong>Social Icons</strong> please leave us a %1$s&#9733;&#9733;&#9733;&#9733;&#9733;%2$s rating. A huge thanks in advance!', 'social-icons' ), '<a href="https://wordpress.org/support/plugin/social-icons/reviews?filter=5#new-post" target="_blank" class="si-rating-link" data-rated="' . esc_attr__( 'Thanks :)', 'social-icons' ) . '">', '</a>' );
57
  si_enqueue_js( "
58
  jQuery( 'a.si-rating-link' ).click( function() {
59
  jQuery.post( '" . SI()->ajax_url() . "', { action: 'social_icons_rated' } );
includes/admin/functions-si-admin.php CHANGED
@@ -33,7 +33,6 @@ function si_get_social_icon_name( $url ) {
33
  foreach ( si_get_supported_url_icon() as $link => $icon_name ) {
34
  if ( strstr( $url, $link ) ) {
35
  $icon = $icon_name;
36
- break;
37
  }
38
  }
39
 
@@ -41,7 +40,6 @@ function si_get_social_icon_name( $url ) {
41
  foreach ( si_get_allowed_socicons() as $icon_name ) {
42
  if ( strstr( $url, $icon_name ) ) {
43
  $icon = $icon_name;
44
- break;
45
  }
46
  }
47
  }
33
  foreach ( si_get_supported_url_icon() as $link => $icon_name ) {
34
  if ( strstr( $url, $link ) ) {
35
  $icon = $icon_name;
 
36
  }
37
  }
38
 
40
  foreach ( si_get_allowed_socicons() as $icon_name ) {
41
  if ( strstr( $url, $icon_name ) ) {
42
  $icon = $icon_name;
 
43
  }
44
  }
45
  }
includes/admin/functions-si-meta-box.php CHANGED
@@ -44,7 +44,7 @@ function social_icons_wp_text_input( $field ) {
44
 
45
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
46
 
47
- foreach ( $field['custom_attributes'] as $attribute => $value ){
48
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
49
  }
50
  }
@@ -73,7 +73,7 @@ function social_icons_wp_hidden_input( $field ) {
73
  $field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
74
  $field['class'] = isset( $field['class'] ) ? $field['class'] : '';
75
 
76
- echo '<input type="hidden" class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['id'] ) . '" id="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( $field['value'] ) . '" /> ';
77
  }
78
 
79
  /**
@@ -95,7 +95,7 @@ function social_icons_wp_textarea_input( $field ) {
95
 
96
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
97
 
98
- foreach ( $field['custom_attributes'] as $attribute => $value ){
99
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
100
  }
101
  }
@@ -133,7 +133,7 @@ function social_icons_wp_checkbox( $field ) {
133
 
134
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
135
 
136
- foreach ( $field['custom_attributes'] as $attribute => $value ){
137
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
138
  }
139
  }
@@ -171,7 +171,7 @@ function social_icons_wp_select( $field ) {
171
 
172
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
173
 
174
- foreach ( $field['custom_attributes'] as $attribute => $value ){
175
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
176
  }
177
  }
44
 
45
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
46
 
47
+ foreach ( $field['custom_attributes'] as $attribute => $value ) {
48
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
49
  }
50
  }
73
  $field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
74
  $field['class'] = isset( $field['class'] ) ? $field['class'] : '';
75
 
76
+ echo '<input type="hidden" class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['id'] ) . '" id="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( $field['value'] ) . '" /> ';
77
  }
78
 
79
  /**
95
 
96
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
97
 
98
+ foreach ( $field['custom_attributes'] as $attribute => $value ) {
99
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
100
  }
101
  }
133
 
134
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
135
 
136
+ foreach ( $field['custom_attributes'] as $attribute => $value ) {
137
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
138
  }
139
  }
171
 
172
  if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
173
 
174
+ foreach ( $field['custom_attributes'] as $attribute => $value ) {
175
  $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
176
  }
177
  }
includes/admin/meta-boxes/class-si-meta-box-group-data.php CHANGED
@@ -46,7 +46,7 @@ class SI_Meta_Box_Group_Data {
46
  'label' => __( 'Linked Icons', 'social-icons' ),
47
  'target' => 'linked_group_data',
48
  'class' => 'linked_group_data',
49
- )
50
  ) );
51
 
52
  foreach ( $group_data_tabs as $key => $tab ) {
@@ -74,15 +74,23 @@ class SI_Meta_Box_Group_Data {
74
  'rounded centre' => __( 'Rounded Centre', 'social-icons' ),
75
  ),
76
  'desc_tip' => 'true',
77
- 'description' => __( 'Define whether or not the entire background should be style based, or just with the default style.', 'social-icons' )
78
  ) );
79
 
80
  // Choose Icon size
81
- social_icons_wp_text_input( array( 'id' => 'icon_font_size', 'label' => __( 'Choose Icon Size', 'social-icons' ), 'placeholder' => __( 'Default', 'social-icons' ), 'desc_tip' => true, 'description' => __( 'Leave blank for default icon font size.', 'social-icons' ), 'type' => 'number', 'custom_attributes' => array(
82
- 'step' => '1',
83
- 'min' => '14',
84
- 'max' => '40'
85
- ) ) );
 
 
 
 
 
 
 
 
86
 
87
  echo '</div>';
88
 
@@ -124,12 +132,12 @@ class SI_Meta_Box_Group_Data {
124
  $sortable_icons = array(
125
  'twitter' => array(
126
  'url' => 'https://twitter.com/',
127
- 'label' => __( 'Follow Me', 'social-icons' )
128
  ),
129
  'facebook' => array(
130
  'url' => 'https://facebook.com/',
131
- 'label' => __( 'Friend me on Facebook', 'social-icons' )
132
- )
133
  );
134
  }
135
 
@@ -149,7 +157,7 @@ class SI_Meta_Box_Group_Data {
149
  $name = 'dashicons-plus';
150
  $icon = array(
151
  'label' => '',
152
- 'url' => ''
153
  );
154
  ob_start();
155
  include( 'views/html-group-social-icon.php' );
@@ -206,7 +214,7 @@ class SI_Meta_Box_Group_Data {
206
 
207
  $sortable_icons[ $icon_name ] = array(
208
  'label' => $icon_label,
209
- 'url' => $icon_url
210
  );
211
  }
212
  }
46
  'label' => __( 'Linked Icons', 'social-icons' ),
47
  'target' => 'linked_group_data',
48
  'class' => 'linked_group_data',
49
+ ),
50
  ) );
51
 
52
  foreach ( $group_data_tabs as $key => $tab ) {
74
  'rounded centre' => __( 'Rounded Centre', 'social-icons' ),
75
  ),
76
  'desc_tip' => 'true',
77
+ 'description' => __( 'Define whether or not the entire background should be style based, or just with the default style.', 'social-icons' ),
78
  ) );
79
 
80
  // Choose Icon size
81
+ social_icons_wp_text_input( array(
82
+ 'id' => 'icon_font_size',
83
+ 'label' => __( 'Choose Icon Size', 'social-icons' ),
84
+ 'placeholder' => __( 'Default', 'social-icons' ),
85
+ 'desc_tip' => true,
86
+ 'description' => __( 'Leave blank for default icon font size.', 'social-icons' ),
87
+ 'type' => 'number',
88
+ 'custom_attributes' => array(
89
+ 'step' => '1',
90
+ 'min' => '14',
91
+ 'max' => '40',
92
+ ),
93
+ ) );
94
 
95
  echo '</div>';
96
 
132
  $sortable_icons = array(
133
  'twitter' => array(
134
  'url' => 'https://twitter.com/',
135
+ 'label' => __( 'Follow Me', 'social-icons' ),
136
  ),
137
  'facebook' => array(
138
  'url' => 'https://facebook.com/',
139
+ 'label' => __( 'Friend me on Facebook', 'social-icons' ),
140
+ ),
141
  );
142
  }
143
 
157
  $name = 'dashicons-plus';
158
  $icon = array(
159
  'label' => '',
160
+ 'url' => '',
161
  );
162
  ob_start();
163
  include( 'views/html-group-social-icon.php' );
214
 
215
  $sortable_icons[ $icon_name ] = array(
216
  'label' => $icon_label,
217
+ 'url' => $icon_url,
218
  );
219
  }
220
  }
includes/class-si-ajax.php CHANGED
@@ -33,7 +33,7 @@ class SI_AJAX {
33
  public static function add_ajax_events() {
34
  // social_icons_EVENT => nopriv
35
  $ajax_events = array(
36
- 'rated' => false
37
  );
38
 
39
  foreach ( $ajax_events as $ajax_event => $nopriv ) {
@@ -50,7 +50,7 @@ class SI_AJAX {
50
  */
51
  public static function rated() {
52
  if ( ! current_user_can( 'manage_options' ) ) {
53
- die(-1);
54
  }
55
 
56
  update_option( 'social_icons_admin_footer_text_rated', 1 );
33
  public static function add_ajax_events() {
34
  // social_icons_EVENT => nopriv
35
  $ajax_events = array(
36
+ 'rated' => false,
37
  );
38
 
39
  foreach ( $ajax_events as $ajax_event => $nopriv ) {
50
  */
51
  public static function rated() {
52
  if ( ! current_user_can( 'manage_options' ) ) {
53
+ die( -1 );
54
  }
55
 
56
  update_option( 'social_icons_admin_footer_text_rated', 1 );
includes/class-si-frontend-scripts.php CHANGED
@@ -39,14 +39,22 @@ class SI_Frontend_Scripts {
39
  public static function get_styles() {
40
  return apply_filters( 'social_icons_enqueue_styles', array(
41
  'social-icons-general' => array(
42
- 'src' => str_replace( array( 'http:', 'https:' ), '', SI()->plugin_url() ) . '/assets/css/social-icons.css',
43
  'deps' => '',
44
  'version' => SI_VERSION,
45
- 'media' => 'all'
46
- )
47
  ) );
48
  }
49
 
 
 
 
 
 
 
 
 
50
  /**
51
  * Register a style for use.
52
  *
@@ -85,11 +93,6 @@ class SI_Frontend_Scripts {
85
  * Register/enqueue frontend scripts.
86
  */
87
  public static function load_scripts() {
88
- $assets_path = str_replace( array( 'http:', 'https:' ), '', SI()->plugin_url() ) . '/assets/';
89
-
90
- // Register any scripts for later use, or used as dependencies
91
- self::register_style( 'social-icons-general', $assets_path . 'css/social-icons.css', array() );
92
-
93
  if ( si_post_content_has_shortcode( 'social_icons_group' ) || apply_filters( 'social_icons_enable_stylesheets', true ) ) {
94
 
95
  // CSS Styles
39
  public static function get_styles() {
40
  return apply_filters( 'social_icons_enqueue_styles', array(
41
  'social-icons-general' => array(
42
+ 'src' => self::get_asset_url( 'assets/css/social-icons.css' ),
43
  'deps' => '',
44
  'version' => SI_VERSION,
45
+ 'media' => 'all',
46
+ ),
47
  ) );
48
  }
49
 
50
+ /**
51
+ * Return protocol relative asset URL.
52
+ * @param string $path
53
+ */
54
+ private static function get_asset_url( $path ) {
55
+ return str_replace( array( 'http:', 'https:' ), '', plugins_url( $path, SI_PLUGIN_FILE ) );
56
+ }
57
+
58
  /**
59
  * Register a style for use.
60
  *
93
  * Register/enqueue frontend scripts.
94
  */
95
  public static function load_scripts() {
 
 
 
 
 
96
  if ( si_post_content_has_shortcode( 'social_icons_group' ) || apply_filters( 'social_icons_enable_stylesheets', true ) ) {
97
 
98
  // CSS Styles
includes/class-si-install.php CHANGED
@@ -46,7 +46,7 @@ class SI_Install {
46
  * @return array
47
  */
48
  public static function plugin_row_meta( $plugin_meta, $plugin_file ) {
49
- if ( $plugin_file == SI_PLUGIN_BASENAME ) {
50
  $new_plugin_meta = array(
51
  'docs' => '<a href="' . esc_url( apply_filters( 'social_icons_docs_url', 'http://themegrill.com/docs/social-icons/' ) ) . '" title="' . esc_attr( __( 'View Social Icons Documentation', 'social-icons' ) ) . '">' . __( 'Docs', 'social-icons' ) . '</a>',
52
  'support' => '<a href="' . esc_url( apply_filters( 'social_icons_support_url', 'http://themegrill.com/support-forum/' ) ) . '" title="' . esc_attr( __( 'Visit Free Customer Support Forum', 'social-icons' ) ) . '">' . __( 'Free Support', 'social-icons' ) . '</a>',
46
  * @return array
47
  */
48
  public static function plugin_row_meta( $plugin_meta, $plugin_file ) {
49
+ if ( SI_PLUGIN_BASENAME == $plugin_file ) {
50
  $new_plugin_meta = array(
51
  'docs' => '<a href="' . esc_url( apply_filters( 'social_icons_docs_url', 'http://themegrill.com/docs/social-icons/' ) ) . '" title="' . esc_attr( __( 'View Social Icons Documentation', 'social-icons' ) ) . '">' . __( 'Docs', 'social-icons' ) . '</a>',
52
  'support' => '<a href="' . esc_url( apply_filters( 'social_icons_support_url', 'http://themegrill.com/support-forum/' ) ) . '" title="' . esc_attr( __( 'Visit Free Customer Support Forum', 'social-icons' ) ) . '">' . __( 'Free Support', 'social-icons' ) . '</a>',
includes/class-si-post-types.php CHANGED
@@ -56,7 +56,7 @@ class SI_Post_Types {
56
  'search_items' => __( 'Search Social Icons', 'social-icons' ),
57
  'not_found' => __( 'No Social Icons found', 'social-icons' ),
58
  'not_found_in_trash' => __( 'No Social Icons found in trash', 'social-icons' ),
59
- 'parent' => __( 'Parent Social Icon', 'social-icons' )
60
  ),
61
  'description' => __( 'This is where you can add new icons set to your social icons.', 'social-icons' ),
62
  'public' => false,
@@ -70,7 +70,7 @@ class SI_Post_Types {
70
  'supports' => array( 'title' ),
71
  'show_in_menu' => 'options-general.php',
72
  'show_in_nav_menus' => false,
73
- 'show_in_admin_bar' => true
74
  )
75
  )
76
  );
56
  'search_items' => __( 'Search Social Icons', 'social-icons' ),
57
  'not_found' => __( 'No Social Icons found', 'social-icons' ),
58
  'not_found_in_trash' => __( 'No Social Icons found in trash', 'social-icons' ),
59
+ 'parent' => __( 'Parent Social Icon', 'social-icons' ),
60
  ),
61
  'description' => __( 'This is where you can add new icons set to your social icons.', 'social-icons' ),
62
  'public' => false,
70
  'supports' => array( 'title' ),
71
  'show_in_menu' => 'options-general.php',
72
  'show_in_nav_menus' => false,
73
+ 'show_in_admin_bar' => true,
74
  )
75
  )
76
  );
includes/class-si-shortcodes.php CHANGED
@@ -44,7 +44,7 @@ class SI_Shortcodes {
44
  }
45
 
46
  $atts = shortcode_atts( array(
47
- 'id' => ''
48
  ), $atts, 'social_icons_group' );
49
 
50
  $group_id = absint( $atts['id'] );
44
  }
45
 
46
  $atts = shortcode_atts( array(
47
+ 'id' => '',
48
  ), $atts, 'social_icons_group' );
49
 
50
  $group_id = absint( $atts['id'] );
includes/functions-si-core.php CHANGED
@@ -102,6 +102,7 @@ function si_get_supported_url_icon() {
102
  'last.fm' => 'lastfm',
103
  'youtu.be' => 'youtube',
104
  'battle.net' => 'battlenet',
 
105
  'play.google.com' => 'play',
106
  'plus.google.com' => 'googleplus',
107
  'photos.google.com' => 'googlephotos',
102
  'last.fm' => 'lastfm',
103
  'youtu.be' => 'youtube',
104
  'battle.net' => 'battlenet',
105
+ 'blogspot.com' => 'blogger',
106
  'play.google.com' => 'play',
107
  'plus.google.com' => 'googleplus',
108
  'photos.google.com' => 'googlephotos',
includes/functions-si-widget.php CHANGED
@@ -15,8 +15,8 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  }
16
 
17
  // Include Widget classes.
18
- include_once( 'abstracts/abstract-si-widget.php' );
19
- include_once( 'widgets/class-si-widget-social-icons.php' );
20
 
21
  /**
22
  * Register Widgets.
15
  }
16
 
17
  // Include Widget classes.
18
+ include_once( dirname( __FILE__ ) . '/abstracts/abstract-si-widget.php' );
19
+ include_once( dirname( __FILE__ ) . '/widgets/class-si-widget-social-icons.php' );
20
 
21
  /**
22
  * Register Widgets.
includes/widgets/class-si-widget-social-icons.php CHANGED
@@ -32,29 +32,29 @@ class SI_Widget_Social_Icons extends SI_Widget {
32
  'title' => array(
33
  'type' => 'text',
34
  'std' => __( 'Social Icons', 'social-icons' ),
35
- 'label' => __( 'Title', 'social-icons' )
36
  ),
37
  'description' => array(
38
  'type' => 'textarea',
39
  'std' => '',
40
  'label' => __( 'Description', 'social-icons' ),
41
- 'desc' => __( 'Short description to be displayed above the icons.', 'social-icons' )
42
  ),
43
  'show_label' => array(
44
  'type' => 'checkbox',
45
  'std' => 0,
46
  'class' => 'show_label',
47
- 'label' => __( 'Show icon label', 'social-icons' )
48
  ),
49
  'show_greyscale' => array(
50
  'type' => 'checkbox',
51
  'std' => 0,
52
- 'label' => __( 'Show Greyscale icons', 'social-icons' )
53
  ),
54
  'open_tab' => array(
55
  'type' => 'checkbox',
56
  'std' => 0,
57
- 'label' => __( 'Open links in new tab', 'social-icons' )
58
  ),
59
  'background_style' => array(
60
  'type' => 'select',
@@ -66,7 +66,7 @@ class SI_Widget_Social_Icons extends SI_Widget {
66
  'rounded' => __( 'Rounded', 'social-icons' ),
67
  'square centre' => __( 'Square Centre', 'social-icons' ),
68
  'rounded centre' => __( 'Rounded Centre', 'social-icons' ),
69
- )
70
  ),
71
  'socicon_size' => array(
72
  'type' => 'number',
@@ -74,25 +74,25 @@ class SI_Widget_Social_Icons extends SI_Widget {
74
  'min' => 14,
75
  'max' => 40,
76
  'std' => 16,
77
- 'label' => __( 'Choose Icon Size', 'social-icons' )
78
  ),
79
  'socicon_sortable' => array(
80
  'type' => 'social_icons',
81
  'class' => 'socicon-sortable',
82
  'label' => __( 'Sortable Socicon', 'social-icons' ),
83
- 'desc' => sprintf( __( 'Note that icons above are for reference and not how they will look on front-end. %sList of icons supported%s', 'social-icons' ), '<br><a target="_blank" href="' . esc_url( 'http://www.socicon.com/chart.php' ) . '">', '</a>' ),
84
  'btn' => __( 'Add Icon', 'social-icons' ),
85
  'std' => array(
86
  'twitter' => array(
87
  'url' => 'https://twitter.com/',
88
- 'label' => __( 'Follow Me', 'social-icons' )
89
  ),
90
  'facebook' => array(
91
  'url' => 'https://facebook.com/',
92
- 'label' => __( 'Friend me on Facebook', 'social-icons' )
93
- )
94
- )
95
- )
96
  );
97
 
98
  parent::__construct();
@@ -149,7 +149,7 @@ class SI_Widget_Social_Icons extends SI_Widget {
149
  'url-field-name' => $this->get_field_name( 'url-fields' ),
150
  'label-value' => $field['label'],
151
  'label-field-id' => $this->get_field_id( 'label-fields' ),
152
- 'label-field-name' => $this->get_field_name( 'label-fields' )
153
  ) );
154
  }
155
  ?></ul>
@@ -194,7 +194,7 @@ class SI_Widget_Social_Icons extends SI_Widget {
194
 
195
  $instance[ $icon_name ] = array(
196
  'url' => $icon_url,
197
- 'label' => $icon_label
198
  );
199
  }
200
  }
32
  'title' => array(
33
  'type' => 'text',
34
  'std' => __( 'Social Icons', 'social-icons' ),
35
+ 'label' => __( 'Title', 'social-icons' ),
36
  ),
37
  'description' => array(
38
  'type' => 'textarea',
39
  'std' => '',
40
  'label' => __( 'Description', 'social-icons' ),
41
+ 'desc' => __( 'Short description to be displayed above the icons.', 'social-icons' ),
42
  ),
43
  'show_label' => array(
44
  'type' => 'checkbox',
45
  'std' => 0,
46
  'class' => 'show_label',
47
+ 'label' => __( 'Show icon label', 'social-icons' ),
48
  ),
49
  'show_greyscale' => array(
50
  'type' => 'checkbox',
51
  'std' => 0,
52
+ 'label' => __( 'Show Greyscale icons', 'social-icons' ),
53
  ),
54
  'open_tab' => array(
55
  'type' => 'checkbox',
56
  'std' => 0,
57
+ 'label' => __( 'Open links in new tab', 'social-icons' ),
58
  ),
59
  'background_style' => array(
60
  'type' => 'select',
66
  'rounded' => __( 'Rounded', 'social-icons' ),
67
  'square centre' => __( 'Square Centre', 'social-icons' ),
68
  'rounded centre' => __( 'Rounded Centre', 'social-icons' ),
69
+ ),
70
  ),
71
  'socicon_size' => array(
72
  'type' => 'number',
74
  'min' => 14,
75
  'max' => 40,
76
  'std' => 16,
77
+ 'label' => __( 'Choose Icon Size', 'social-icons' ),
78
  ),
79
  'socicon_sortable' => array(
80
  'type' => 'social_icons',
81
  'class' => 'socicon-sortable',
82
  'label' => __( 'Sortable Socicon', 'social-icons' ),
83
+ 'desc' => sprintf( __( 'Note that icons above are for reference and not how they will look on front-end. %1$sList of icons supported%2$s', 'social-icons' ), '<br><a target="_blank" href="' . esc_url( 'http://www.socicon.com/chart.php' ) . '">', '</a>' ),
84
  'btn' => __( 'Add Icon', 'social-icons' ),
85
  'std' => array(
86
  'twitter' => array(
87
  'url' => 'https://twitter.com/',
88
+ 'label' => __( 'Follow Me', 'social-icons' ),
89
  ),
90
  'facebook' => array(
91
  'url' => 'https://facebook.com/',
92
+ 'label' => __( 'Friend me on Facebook', 'social-icons' ),
93
+ ),
94
+ ),
95
+ ),
96
  );
97
 
98
  parent::__construct();
149
  'url-field-name' => $this->get_field_name( 'url-fields' ),
150
  'label-value' => $field['label'],
151
  'label-field-id' => $this->get_field_id( 'label-fields' ),
152
+ 'label-field-name' => $this->get_field_name( 'label-fields' ),
153
  ) );
154
  }
155
  ?></ul>
194
 
195
  $instance[ $icon_name ] = array(
196
  'url' => $icon_url,
197
+ 'label' => $icon_label,
198
  );
199
  }
200
  }
phpcs.ruleset.xml ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <ruleset name="WordPress Coding Standards">
3
+ <!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
4
+ <!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
5
+
6
+ <!-- Set a description for this ruleset. -->
7
+ <description>A custom set of code standard rules to check for WordPress themes and plugins.</description>
8
+
9
+ <!-- Include the WordPress ruleset, with exclusions. -->
10
+ <rule ref="WordPress">
11
+ <exclude name="Generic.CodeAnalysis.EmptyStatement.DetectedCATCH" />
12
+ <exclude name="Generic.CodeAnalysis.EmptyStatement.DetectedIF" />
13
+ <exclude name="Generic.CodeAnalysis.EmptyStatement.DetectedELSE" />
14
+ <exclude name="Generic.CodeAnalysis.ForLoopWithTestFunctionalCall.NotAllowed" />
15
+ <exclude name="Generic.Commenting.DocComment.LongNotCapital" />
16
+ <exclude name="Generic.Commenting.DocComment.MissingShort" />
17
+ <exclude name="Generic.Commenting.DocComment.ShortNotCapital" />
18
+ <exclude name="Generic.Commenting.DocComment.SpacingAfter" />
19
+ <exclude name="Generic.Commenting.DocComment.SpacingBeforeTags" />
20
+ <exclude name="Generic.ControlStructures.InlineControlStructure.NotAllowed" />
21
+ <!-- <exclude name="Generic.Files.EndFileNewline.NotFound" /> -->
22
+ <exclude name="Generic.Files.LineEndings.InvalidEOLChar" />
23
+ <exclude name="Generic.Files.LowercasedFilename.NotFound" />
24
+ <!-- <exclude name="Generic.Formatting.DisallowMultipleStatements.SameLine" /> -->
25
+ <!-- <exclude name="Generic.Formatting.SpaceAfterCast.NoSpace" /> -->
26
+ <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.BraceOnNewLine" />
27
+ <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace" />
28
+ <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.SpaceBeforeBrace" />
29
+ <exclude name="Generic.PHP.DeprecatedFunctions.Deprecated" />
30
+ <exclude name="Generic.PHP.ForbiddenFunctions.FoundWithAlternative" />
31
+ <exclude name="Generic.PHP.LowerCaseKeyword.Found" />
32
+ <exclude name="Generic.PHP.NoSilencedErrors.Discouraged" />
33
+ <exclude name="Generic.Strings.UnnecessaryStringConcat.Found" />
34
+ <exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
35
+ <exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
36
+ <exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" />
37
+ <exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
38
+ <!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterCloseBracket" /> -->
39
+ <!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket" /> -->
40
+ <!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket" /> -->
41
+ <!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeOpenBracket" /> -->
42
+ <!-- <exclude name="Squiz.Commenting.BlockComment.NoEmptyLineBefore" /> -->
43
+ <!-- <exclude name="Squiz.Commenting.BlockComment.NoNewLine" /> -->
44
+ <exclude name="Squiz.Commenting.BlockComment.WrongEnd" />
45
+ <exclude name="Squiz.Commenting.ClassComment.SpacingAfter" />
46
+ <exclude name="Squiz.Commenting.ClassComment.Missing" />
47
+ <exclude name="Squiz.Commenting.ClosingDeclarationComment.Abstract" />
48
+ <!-- <exclude name="Squiz.Commenting.DocCommentAlignment.SpaceBeforeStar" /> -->
49
+ <exclude name="Squiz.Commenting.EmptyCatchComment.Missing" />
50
+ <exclude name="Squiz.Commenting.FileComment.Missing" />
51
+ <exclude name="Squiz.Commenting.FileComment.MissingPackageTag" />
52
+ <exclude name="Squiz.Commenting.FileComment.SpacingAfterComment" />
53
+ <exclude name="Squiz.Commenting.FileComment.SpacingAfterOpen" />
54
+ <exclude name="Squiz.Commenting.FileComment.WrongStyle" />
55
+ <exclude name="Squiz.Commenting.FunctionComment.EmptyThrows" />
56
+ <exclude name="Squiz.Commenting.FunctionComment.ExtraParamComment" />
57
+ <exclude name="Squiz.Commenting.FunctionComment.InvalidNoReturn" />
58
+ <exclude name="Squiz.Commenting.FunctionComment.InvalidReturnVoid" />
59
+ <exclude name="Squiz.Commenting.FunctionComment.Missing" />
60
+ <exclude name="Squiz.Commenting.FunctionComment.MissingParamComment" />
61
+ <exclude name="Squiz.Commenting.FunctionComment.MissingParamName" />
62
+ <exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" />
63
+ <exclude name="Squiz.Commenting.FunctionComment.ParamCommentFullStop" />
64
+ <exclude name="Squiz.Commenting.FunctionComment.ParamNameNoCaseMatch" />
65
+ <exclude name="Squiz.Commenting.FunctionComment.ParamNameNoMatch" />
66
+ <exclude name="Squiz.Commenting.FunctionComment.ScalarTypeHintMissing" />
67
+ <!-- <exclude name="Squiz.Commenting.FunctionComment.SpacingAfter" /> -->
68
+ <exclude name="Squiz.Commenting.FunctionComment.SpacingAfterParamType" />
69
+ <exclude name="Squiz.Commenting.FunctionComment.ThrowsNoFullStop" />
70
+ <exclude name="Squiz.Commenting.FunctionComment.ThrowsNotCapital" />
71
+ <exclude name="Squiz.Commenting.FunctionCommentThrowTag.Missing" />
72
+ <exclude name="Squiz.Commenting.FunctionCommentThrowTag.WrongNumber" />
73
+ <exclude name="Squiz.Commenting.FunctionComment.WrongStyle" />
74
+ <exclude name="Squiz.Commenting.InlineComment.Empty" />
75
+ <exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" />
76
+ <!-- <exclude name="Squiz.Commenting.InlineComment.NoSpaceBefore" /> -->
77
+ <exclude name="Squiz.Commenting.InlineComment.NotCapital" />
78
+ <!-- <exclude name="Squiz.Commenting.InlineComment.SpacingAfter" /> -->
79
+ <!-- <exclude name="Squiz.Commenting.InlineComment.SpacingBefore" /> -->
80
+ <exclude name="Squiz.Commenting.InlineComment.WrongStyle" />
81
+ <exclude name="Squiz.Commenting.VariableComment.Missing" />
82
+ <exclude name="Squiz.Commenting.VariableComment.MissingVar" />
83
+ <exclude name="Squiz.Commenting.VariableComment.WrongStyle" />
84
+ <!-- <exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace" /> -->
85
+ <!-- <exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis" /> -->
86
+ <exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword" />
87
+ <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpaceAfterDefault" />
88
+ <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterOpen" />
89
+ <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterOpenHint" />
90
+ <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpaceBeforeEquals" />
91
+ <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingBeforeClose" />
92
+ <exclude name="Squiz.PHP.CommentedOutCode.Found" />
93
+ <exclude name="Squiz.Strings.DoubleQuoteUsage.NotRequired" />
94
+ <!-- <exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines" /> -->
95
+ <!-- <exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EndLine" /> -->
96
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.CloseBraceNewLine" /> -->
97
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.FirstIndexNoNewline" /> -->
98
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.FirstValueNoNewline" /> -->
99
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.IndexNoNewline" /> -->
100
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoComma" /> -->
101
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoCommaAfterLast" /> -->
102
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceAfterComma" /> -->
103
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceAfterDoubleArrow" /> -->
104
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceAfterOpenParenthesis" /> -->
105
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceBeforeDoubleArrow" /> -->
106
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.SpaceAfterArrayOpener" /> -->
107
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.SpaceAfterDoubleArrow" /> -->
108
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.SpaceAfterKeyword" /> -->
109
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.SpaceBeforeComma" /> -->
110
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.SpaceInEmptyArray" /> -->
111
+ <!-- <exclude name="WordPress.Arrays.ArrayDeclaration.ValueNoNewline" /> -->
112
+ <!-- <exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions.NoSpacesAroundArrayKeys" /> -->
113
+ <!-- <exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys" /> -->
114
+ <exclude name="WordPress.Classes.ClassOpeningStatement.BraceOnNewLine" />
115
+ <exclude name="WordPress.CSRF.NonceVerification.NoNonceVerification" />
116
+ <exclude name="WordPress.DB.RestrictedFunctions.mysql" />
117
+ <exclude name="WordPress.Files.FileName.UnderscoresNotAllowed" />
118
+ <exclude name="WordPress.Functions.DontExtract.extract" />
119
+ <exclude name="WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid" />
120
+ <exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid" />
121
+ <exclude name="WordPress.NamingConventions.ValidHookName.UseUnderscores" />
122
+ <exclude name="WordPress.NamingConventions.ValidVariableName.MemberNotSnakeCase" />
123
+ <exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCase" />
124
+ <exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar" />
125
+ <exclude name="WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase" />
126
+ <exclude name="WordPress.PHP.DiscouragedFunctions.Discouraged" />
127
+ <exclude name="WordPress.PHP.DiscouragedFunctions.DiscouragedWithAlternative" />
128
+ <exclude name="WordPress.PHP.StrictComparisons.LooseComparison" />
129
+ <exclude name="WordPress.PHP.StrictInArray.MissingTrueStrict" />
130
+ <!-- <exclude name="WordPress.PHP.YodaConditions.NotYoda" /> -->
131
+ <exclude name="WordPress.VIP.AdminBarRemoval.RemovalDetected" />
132
+ <exclude name="WordPress.VIP.CronInterval.ChangeDetected" />
133
+ <exclude name="WordPress.VIP.DirectDatabaseQuery.DirectQuery" />
134
+ <exclude name="WordPress.VIP.DirectDatabaseQuery.NoCaching" />
135
+ <exclude name="WordPress.VIP.DirectDatabaseQuery.SchemaChange" />
136
+ <exclude name="WordPress.VIP.FileSystemWritesDisallow.FileWriteDetected" />
137
+ <exclude name="WordPress.VIP.OrderByRand.orderby" />
138
+ <exclude name="WordPress.VIP.PostsPerPage.posts_per_page" />
139
+ <exclude name="WordPress.VIP.RestrictedFunctions.count_user_posts" />
140
+ <exclude name="WordPress.VIP.RestrictedFunctions.custom_role" />
141
+ <exclude name="WordPress.VIP.RestrictedFunctions.cookies" />
142
+ <exclude name="WordPress.VIP.RestrictedFunctions.curl" />
143
+ <exclude name="WordPress.VIP.RestrictedFunctions.error_log" />
144
+ <exclude name="WordPress.VIP.RestrictedFunctions.extract" />
145
+ <exclude name="WordPress.VIP.RestrictedFunctions.file_get_contents" />
146
+ <exclude name="WordPress.VIP.RestrictedFunctions.get_pages" />
147
+ <exclude name="WordPress.VIP.RestrictedFunctions.get_posts" />
148
+ <exclude name="WordPress.VIP.RestrictedFunctions.get_term_by" />
149
+ <exclude name="WordPress.VIP.RestrictedFunctions.get_term_link" />
150
+ <exclude name="WordPress.VIP.RestrictedFunctions.parse_url" />
151
+ <exclude name="WordPress.VIP.RestrictedFunctions.prevent_path_disclosure" />
152
+ <exclude name="WordPress.VIP.RestrictedFunctions.runtime_configuration" />
153
+ <exclude name="WordPress.VIP.RestrictedFunctions.serialize" />
154
+ <exclude name="WordPress.VIP.RestrictedFunctions.urlencode" />
155
+ <exclude name="WordPress.VIP.RestrictedFunctions.url_to_postid" />
156
+ <exclude name="WordPress.VIP.RestrictedFunctions.user_meta" />
157
+ <exclude name="WordPress.VIP.RestrictedFunctions.wp_get_post_terms" />
158
+ <exclude name="WordPress.VIP.RestrictedFunctions.wp_redirect" />
159
+ <exclude name="WordPress.VIP.RestrictedFunctions.wp_remote_get" />
160
+ <exclude name="WordPress.VIP.RestrictedVariables.user_meta" />
161
+ <exclude name="WordPress.VIP.RestrictedVariables.cache_constraints" />
162
+ <exclude name="WordPress.VIP.SessionFunctionsUsage.session_write_close" />
163
+ <exclude name="WordPress.VIP.SlowDBQuery.slow_db_query" />
164
+ <exclude name="WordPress.VIP.SuperGlobalInputUsage.AccessDetected" />
165
+ <exclude name="WordPress.VIP.ValidatedSanitizedInput.InputNotSanitized" />
166
+ <exclude name="WordPress.VIP.ValidatedSanitizedInput.InputNotValidated" />
167
+ <exclude name="WordPress.VIP.ValidatedSanitizedInput.MissingUnslash" />
168
+ <exclude name="WordPress.Variables.GlobalVariables.OverrideProhibited" />
169
+ <exclude name="WordPress.WP.EnqueuedResources.NonEnqueuedScript" />
170
+ <exclude name="WordPress.WP.I18n.MissingSingularPlaceholder" />
171
+ <exclude name="WordPress.WP.I18n.MismatchedPlaceholders" />
172
+ <exclude name="WordPress.WP.I18n.NonSingularStringLiteralPlural" />
173
+ <exclude name="WordPress.WP.I18n.NonSingularStringLiteralText" />
174
+ <exclude name="WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet" />
175
+ <exclude name="WordPress.WP.PreparedSQL.NotPrepared" />
176
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterEnd" /> -->
177
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.ExtraSpaceAfterCloseParenthesis" /> -->
178
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterCloseParenthesis" /> -->
179
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis" /> -->
180
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterStructureOpen" /> -->
181
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon" /> -->
182
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis" /> -->
183
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeOpenParenthesis" /> -->
184
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.OpenBraceNotSameLine" /> -->
185
+ <!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.SpaceBeforeFunctionOpenParenthesis" /> -->
186
+ <!-- <exclude name="WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter" /> -->
187
+ <!-- <exclude name="WordPress.WhiteSpace.OperatorSpacing.NoSpaceBefore" /> -->
188
+ <!-- <exclude name="WordPress.WhiteSpace.OperatorSpacing.SpacingAfter" /> -->
189
+ <!-- <exclude name="WordPress.WhiteSpace.OperatorSpacing.SpacingBefore" /> -->
190
+ <exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" />
191
+ <exclude name="WordPress.XSS.EscapeOutput.UnsafePrintingFunction" />
192
+ </rule>
193
+ </ruleset>
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: ThemeGrill, shivapoudel
3
  Tags: social, media, icons, brands, widget, social networking, social media, social icon, social icons, social profile, social icon widget, shortcode
4
  Requires at least: 4.0
5
- Tested up to: 4.6
6
- Stable tag: 1.4.1
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -49,9 +49,18 @@ Yes you can! Join in on our [GitHub repository](https://github.com/themegrill/so
49
 
50
  1. Social Icons Widget Form.
51
  2. Social Icons Slick Frontend.
 
 
52
 
53
  == Changelog ==
54
 
 
 
 
 
 
 
 
55
  = 1.4.1 - 22/09/2016 =
56
  * Fix - odnoklassniki icon for ok.ru profile.
57
  * Fix - Center icons if used in Visual composer.
2
  Contributors: ThemeGrill, shivapoudel
3
  Tags: social, media, icons, brands, widget, social networking, social media, social icon, social icons, social profile, social icon widget, shortcode
4
  Requires at least: 4.0
5
+ Tested up to: 4.7
6
+ Stable tag: 1.5.0
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
49
 
50
  1. Social Icons Widget Form.
51
  2. Social Icons Slick Frontend.
52
+ 3. Social Icons Data Panel
53
+ 4. Social Icons Admin Panel
54
 
55
  == Changelog ==
56
 
57
+ = 1.5.0 - 08/12/2016 =
58
+ * Fix - Blogspot icon to blog on Blogger.com
59
+ * Fix - Breakage of first social icon name found within a loop.
60
+ * Fix - Fontawesome pseudo class selectors applied in sidebar area.
61
+ * Tweak - Include dirname before including files.
62
+ * Tweak - Social icons repeater field for siteorigin panel compat.
63
+
64
  = 1.4.1 - 22/09/2016 =
65
  * Fix - odnoklassniki icon for ok.ru profile.
66
  * Fix - Center icons if used in Visual composer.
social-icons.php CHANGED
@@ -2,8 +2,8 @@
2
  /**
3
  * Plugin Name: Social Icons
4
  * Plugin URI: http://themegrill.com/plugins/social-icons/
5
- * Description: Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like
6
- * Version: 1.4.1
7
  * Author: ThemeGrill
8
  * Author URI: http://themegrill.com
9
  * License: GPLv3 or later
@@ -29,7 +29,7 @@ final class Social_Icons {
29
  * Plugin version.
30
  * @var string
31
  */
32
- public $version = '1.4.1';
33
 
34
  /**
35
  * Instance of this class.
@@ -94,6 +94,7 @@ final class Social_Icons {
94
  */
95
  private function define_constants() {
96
  $this->define( 'SI_PLUGIN_FILE', __FILE__ );
 
97
  $this->define( 'SI_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
98
  $this->define( 'SI_VERSION', $this->version );
99
  }
@@ -129,29 +130,29 @@ final class Social_Icons {
129
  * Includes.
130
  */
131
  private function includes() {
132
- include_once( 'includes/functions-si-core.php' );
133
- include_once( 'includes/functions-si-widget.php' );
134
- include_once( 'includes/class-si-autoloader.php' );
135
- include_once( 'includes/class-si-install.php' );
136
- include_once( 'includes/class-si-ajax.php' );
137
 
138
  if ( $this->is_request( 'admin' ) ) {
139
- include_once( 'includes/admin/class-si-admin.php' );
140
  }
141
 
142
  if ( $this->is_request( 'frontend' ) ) {
143
  $this->frontend_includes();
144
  }
145
 
146
- include_once( 'includes/class-si-post-types.php' ); // Registers post types
147
  }
148
 
149
  /**
150
  * Include required frontend files.
151
  */
152
  public function frontend_includes() {
153
- include_once( 'includes/class-si-frontend-scripts.php' ); // Frontend Scripts
154
- include_once( 'includes/class-si-shortcodes.php' ); // Shortcodes Class
155
  }
156
 
157
  /**
2
  /**
3
  * Plugin Name: Social Icons
4
  * Plugin URI: http://themegrill.com/plugins/social-icons/
5
+ * Description: Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like.
6
+ * Version: 1.5.0
7
  * Author: ThemeGrill
8
  * Author URI: http://themegrill.com
9
  * License: GPLv3 or later
29
  * Plugin version.
30
  * @var string
31
  */
32
+ public $version = '1.5.0';
33
 
34
  /**
35
  * Instance of this class.
94
  */
95
  private function define_constants() {
96
  $this->define( 'SI_PLUGIN_FILE', __FILE__ );
97
+ $this->define( 'SI_ABSPATH', dirname( __FILE__ ) . '/' );
98
  $this->define( 'SI_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
99
  $this->define( 'SI_VERSION', $this->version );
100
  }
130
  * Includes.
131
  */
132
  private function includes() {
133
+ include_once( SI_ABSPATH . 'includes/functions-si-core.php' );
134
+ include_once( SI_ABSPATH . 'includes/functions-si-widget.php' );
135
+ include_once( SI_ABSPATH . 'includes/class-si-autoloader.php' );
136
+ include_once( SI_ABSPATH . 'includes/class-si-install.php' );
137
+ include_once( SI_ABSPATH . 'includes/class-si-ajax.php' );
138
 
139
  if ( $this->is_request( 'admin' ) ) {
140
+ include_once( SI_ABSPATH . 'includes/admin/class-si-admin.php' );
141
  }
142
 
143
  if ( $this->is_request( 'frontend' ) ) {
144
  $this->frontend_includes();
145
  }
146
 
147
+ include_once( SI_ABSPATH . 'includes/class-si-post-types.php' ); // Registers post types
148
  }
149
 
150
  /**
151
  * Include required frontend files.
152
  */
153
  public function frontend_includes() {
154
+ include_once( SI_ABSPATH . 'includes/class-si-frontend-scripts.php' ); // Frontend Scripts
155
+ include_once( SI_ABSPATH . 'includes/class-si-shortcodes.php' ); // Shortcodes Class
156
  }
157
 
158
  /**