Version Description
- 22/09/2016 =
- Fix - odnoklassniki icon for ok.ru profile.
- Fix - Center icons if used in Visual composer.
- Fix - Non-static method should not be called statically.
- Tweak - Updated socicon to
v3.0.4
for new icon sets support. - Refactor - Detect socicon from supported URL and allowed lists.
Download this release
Release Info
Developer | ThemeGrill |
Plugin | Social Icons |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.4.1
- assets/css/_socicon.scss +198 -0
- assets/css/_variables.scss +157 -135
- assets/css/admin.css +1 -1
- assets/css/social-icons.css +1 -1
- assets/css/social-icons.scss +9 -0
- assets/css/widgets.css +1 -1
- assets/fonts/socicon.eot +0 -0
- assets/fonts/socicon.svg +22 -0
- assets/fonts/socicon.ttf +0 -0
- assets/fonts/socicon.woff +0 -0
- assets/js/admin/meta-boxes-group.js +22 -33
- assets/js/admin/meta-boxes-group.min.js +1 -1
- assets/js/admin/meta-boxes.min.js +1 -1
- assets/js/admin/widgets.js +30 -42
- assets/js/admin/widgets.min.js +1 -1
- assets/js/jquery-tiptip/jquery.tipTip.min.js +1 -1
- includes/admin/class-si-admin-assets.php +14 -18
- includes/admin/class-si-admin.php +1 -1
- includes/admin/functions-si-admin.php +5 -14
- includes/class-si-install.php +2 -2
- includes/class-si-shortcodes.php +1 -1
- includes/functions-si-core.php +23 -2
- readme.txt +10 -3
- social-icons.php +2 -2
- uninstall.php +2 -2
assets/css/_socicon.scss
CHANGED
@@ -1241,3 +1241,201 @@
|
|
1241 |
content: "\e082";
|
1242 |
}
|
1243 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
content: "\e082";
|
1242 |
}
|
1243 |
}
|
1244 |
+
|
1245 |
+
.socicon-battlenet {
|
1246 |
+
color: $icon-battlenet;
|
1247 |
+
background-color: $icon-battlenet;
|
1248 |
+
|
1249 |
+
&:before {
|
1250 |
+
content: "\e083";
|
1251 |
+
}
|
1252 |
+
}
|
1253 |
+
|
1254 |
+
.socicon-chrome {
|
1255 |
+
color: $icon-chrome;
|
1256 |
+
background-color: $icon-chrome;
|
1257 |
+
|
1258 |
+
&:before {
|
1259 |
+
content: "\e084";
|
1260 |
+
}
|
1261 |
+
}
|
1262 |
+
|
1263 |
+
.socicon-diablo {
|
1264 |
+
color: $icon-diablo;
|
1265 |
+
background-color: $icon-diablo;
|
1266 |
+
|
1267 |
+
&:before {
|
1268 |
+
content: "\e085";
|
1269 |
+
}
|
1270 |
+
}
|
1271 |
+
|
1272 |
+
.socicon-discord {
|
1273 |
+
color: $icon-discord;
|
1274 |
+
background-color: $icon-discord;
|
1275 |
+
|
1276 |
+
&:before {
|
1277 |
+
content: "\e086";
|
1278 |
+
}
|
1279 |
+
}
|
1280 |
+
|
1281 |
+
.socicon-issuu {
|
1282 |
+
color: $icon-issuu;
|
1283 |
+
background-color: $icon-issuu;
|
1284 |
+
|
1285 |
+
&:before {
|
1286 |
+
content: "\e087";
|
1287 |
+
}
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
.socicon-macos {
|
1291 |
+
color: $icon-macos;
|
1292 |
+
background-color: $icon-macos;
|
1293 |
+
|
1294 |
+
&:before {
|
1295 |
+
content: "\e088";
|
1296 |
+
}
|
1297 |
+
}
|
1298 |
+
|
1299 |
+
.socicon-firefox {
|
1300 |
+
color: $icon-firefox;
|
1301 |
+
background-color: $icon-firefox;
|
1302 |
+
|
1303 |
+
&:before {
|
1304 |
+
content: "\e089";
|
1305 |
+
}
|
1306 |
+
}
|
1307 |
+
|
1308 |
+
.socicon-heroes {
|
1309 |
+
color: $icon-heroes;
|
1310 |
+
background-color: $icon-heroes;
|
1311 |
+
|
1312 |
+
&:before {
|
1313 |
+
content: "\e08a";
|
1314 |
+
}
|
1315 |
+
}
|
1316 |
+
|
1317 |
+
.socicon-hearthstone {
|
1318 |
+
color: $icon-hearthstone;
|
1319 |
+
background-color: $icon-hearthstone;
|
1320 |
+
|
1321 |
+
&:before {
|
1322 |
+
content: "\e08b";
|
1323 |
+
}
|
1324 |
+
}
|
1325 |
+
|
1326 |
+
.socicon-overwatch {
|
1327 |
+
color: $icon-overwatch;
|
1328 |
+
background-color: $icon-overwatch;
|
1329 |
+
|
1330 |
+
&:before {
|
1331 |
+
content: "\e08c";
|
1332 |
+
}
|
1333 |
+
}
|
1334 |
+
|
1335 |
+
.socicon-opera {
|
1336 |
+
color: $icon-opera;
|
1337 |
+
background-color: $icon-opera;
|
1338 |
+
|
1339 |
+
&:before {
|
1340 |
+
content: "\e08d";
|
1341 |
+
}
|
1342 |
+
}
|
1343 |
+
|
1344 |
+
.socicon-warcraft {
|
1345 |
+
color: $icon-warcraft;
|
1346 |
+
background-color: $icon-warcraft;
|
1347 |
+
|
1348 |
+
&:before {
|
1349 |
+
content: "\e08e";
|
1350 |
+
}
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
.socicon-starcraft {
|
1354 |
+
color: $icon-starcraft;
|
1355 |
+
background-color: $icon-starcraft;
|
1356 |
+
|
1357 |
+
&:before {
|
1358 |
+
content: "\e08f";
|
1359 |
+
}
|
1360 |
+
}
|
1361 |
+
|
1362 |
+
.socicon-keybase {
|
1363 |
+
color: $icon-keybase;
|
1364 |
+
background-color: $icon-keybase;
|
1365 |
+
|
1366 |
+
&:before {
|
1367 |
+
content: "\e090";
|
1368 |
+
}
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
.socicon-alliance {
|
1372 |
+
color: $icon-alliance;
|
1373 |
+
background-color: $icon-alliance;
|
1374 |
+
|
1375 |
+
&:before {
|
1376 |
+
content: "\e091";
|
1377 |
+
}
|
1378 |
+
}
|
1379 |
+
|
1380 |
+
.socicon-livejournal {
|
1381 |
+
color: $icon-livejournal;
|
1382 |
+
background-color: $icon-livejournal;
|
1383 |
+
|
1384 |
+
&:before {
|
1385 |
+
content: "\e092";
|
1386 |
+
}
|
1387 |
+
}
|
1388 |
+
|
1389 |
+
.socicon-googlephotos {
|
1390 |
+
color: $icon-googlephotos;
|
1391 |
+
background-color: $icon-googlephotos;
|
1392 |
+
|
1393 |
+
&:before {
|
1394 |
+
content: "\e093";
|
1395 |
+
}
|
1396 |
+
}
|
1397 |
+
|
1398 |
+
.socicon-horde {
|
1399 |
+
color: $icon-horde;
|
1400 |
+
background-color: $icon-horde;
|
1401 |
+
|
1402 |
+
&:before {
|
1403 |
+
content: "\e094";
|
1404 |
+
}
|
1405 |
+
}
|
1406 |
+
|
1407 |
+
.socicon-etsy {
|
1408 |
+
color: $icon-etsy;
|
1409 |
+
background-color: $icon-etsy;
|
1410 |
+
|
1411 |
+
&:before {
|
1412 |
+
content: "\e095";
|
1413 |
+
}
|
1414 |
+
}
|
1415 |
+
|
1416 |
+
.socicon-zapier {
|
1417 |
+
color: $icon-zapier;
|
1418 |
+
background-color: $icon-zapier;
|
1419 |
+
|
1420 |
+
&:before {
|
1421 |
+
content: "\e096";
|
1422 |
+
}
|
1423 |
+
}
|
1424 |
+
|
1425 |
+
.socicon-google-scholar {
|
1426 |
+
color: $icon-google-scholar;
|
1427 |
+
background-color: $icon-google-scholar;
|
1428 |
+
|
1429 |
+
&:before {
|
1430 |
+
content: "\e097";
|
1431 |
+
}
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
.socicon-researchgate {
|
1435 |
+
color: $icon-researchgate;
|
1436 |
+
background-color: $icon-researchgate;
|
1437 |
+
|
1438 |
+
&:before {
|
1439 |
+
content: "\e098";
|
1440 |
+
}
|
1441 |
+
}
|
assets/css/_variables.scss
CHANGED
@@ -2,140 +2,162 @@
|
|
2 |
* _variables.scss
|
3 |
* Social Icons CSS Variables
|
4 |
*/
|
5 |
-
$green:
|
6 |
-
$red:
|
7 |
-
$orange:
|
8 |
-
$blue:
|
9 |
|
10 |
// Socicons brand color codes.
|
11 |
-
$icon-modelmayhem:
|
12 |
-
$icon-mixcloud:
|
13 |
-
$icon-drupal:
|
14 |
-
$icon-swarm:
|
15 |
-
$icon-istock:
|
16 |
-
$icon-yammer:
|
17 |
-
$icon-ello:
|
18 |
-
$icon-stackoverflow:
|
19 |
-
$icon-persona:
|
20 |
-
$icon-triplej:
|
21 |
-
$icon-houzz:
|
22 |
-
$icon-rss:
|
23 |
-
$icon-paypal:
|
24 |
-
$icon-odnoklassniki:
|
25 |
-
$icon-airbnb:
|
26 |
-
$icon-periscope:
|
27 |
-
$icon-outlook:
|
28 |
-
$icon-coderwall:
|
29 |
-
$icon-tripadvisor:
|
30 |
-
$icon-appnet:
|
31 |
-
$icon-goodreads:
|
32 |
-
$icon-tripit:
|
33 |
-
$icon-lanyrd:
|
34 |
-
$icon-slideshare:
|
35 |
-
$icon-buffer:
|
36 |
-
$icon-disqus:
|
37 |
-
$icon-vkontakte:
|
38 |
-
$icon-whatsapp:
|
39 |
-
$icon-patreon:
|
40 |
-
$icon-storehouse:
|
41 |
-
$icon-pocket:
|
42 |
-
$icon-mail:
|
43 |
-
$icon-blogger:
|
44 |
-
$icon-technorati:
|
45 |
-
$icon-reddit:
|
46 |
-
$icon-dribbble:
|
47 |
-
$icon-stumbleupon:
|
48 |
-
$icon-digg:
|
49 |
-
$icon-envato:
|
50 |
-
$icon-behance:
|
51 |
-
$icon-delicious:
|
52 |
-
$icon-deviantart:
|
53 |
-
$icon-forrst:
|
54 |
-
$icon-play:
|
55 |
-
$icon-zerply:
|
56 |
-
$icon-wikipedia:
|
57 |
-
$icon-apple:
|
58 |
-
$icon-flattr:
|
59 |
-
$icon-github:
|
60 |
-
$icon-renren:
|
61 |
-
$icon-friendfeed:
|
62 |
-
$icon-newsvine:
|
63 |
-
$icon-identica:
|
64 |
-
$icon-bebo:
|
65 |
-
$icon-zynga:
|
66 |
-
$icon-steam:
|
67 |
-
$icon-xbox:
|
68 |
-
$icon-windows:
|
69 |
-
$icon-qq:
|
70 |
-
$icon-douban:
|
71 |
-
$icon-meetup:
|
72 |
-
$icon-playstation:
|
73 |
-
$icon-android:
|
74 |
-
$icon-snapchat:
|
75 |
-
$icon-twitter:
|
76 |
-
$icon-facebook:
|
77 |
-
$icon-googleplus:
|
78 |
-
$icon-pinterest:
|
79 |
-
$icon-foursquare:
|
80 |
-
$icon-yahoo:
|
81 |
-
$icon-skype:
|
82 |
-
$icon-yelp:
|
83 |
-
$icon-feedburner:
|
84 |
-
$icon-linkedin:
|
85 |
-
$icon-viadeo:
|
86 |
-
$icon-xing:
|
87 |
-
$icon-myspace:
|
88 |
-
$icon-soundcloud:
|
89 |
-
$icon-spotify:
|
90 |
-
$icon-grooveshark:
|
91 |
-
$icon-lastfm:
|
92 |
-
$icon-youtube:
|
93 |
-
$icon-vimeo:
|
94 |
-
$icon-dailymotion:
|
95 |
-
$icon-vine:
|
96 |
-
$icon-flickr:
|
97 |
-
$icon-500px:
|
98 |
-
$icon-instagram:
|
99 |
-
$icon-wordpress:
|
100 |
-
$icon-tumblr:
|
101 |
-
$icon-twitch:
|
102 |
-
$icon-8tracks:
|
103 |
-
$icon-amazon:
|
104 |
-
$icon-icq:
|
105 |
-
$icon-smugmug:
|
106 |
-
$icon-ravelry:
|
107 |
-
$icon-weibo:
|
108 |
-
$icon-baidu:
|
109 |
-
$icon-angellist:
|
110 |
-
$icon-ebay:
|
111 |
-
$icon-imdb:
|
112 |
-
$icon-stayfriends:
|
113 |
-
$icon-residentadvisor: #b3be1b;
|
114 |
-
$icon-google:
|
115 |
-
$icon-yandex:
|
116 |
-
$icon-sharethis:
|
117 |
-
$icon-bandcamp:
|
118 |
-
$icon-itunes:
|
119 |
-
$icon-deezer:
|
120 |
-
$icon-medium:
|
121 |
-
$icon-telegram:
|
122 |
-
$icon-openid:
|
123 |
-
$icon-amplement:
|
124 |
-
$icon-viber:
|
125 |
-
$icon-zomato:
|
126 |
-
$icon-quora:
|
127 |
-
$icon-draugiem:
|
128 |
-
$icon-endomodo:
|
129 |
-
$icon-filmweb:
|
130 |
-
$icon-stackexchange:
|
131 |
-
$icon-wykop:
|
132 |
-
$icon-teamspeak:
|
133 |
-
$icon-teamviewer:
|
134 |
-
$icon-ventrilo:
|
135 |
-
$icon-younow:
|
136 |
-
$icon-raidcall:
|
137 |
-
$icon-mumble:
|
138 |
-
$icon-bebee:
|
139 |
-
$icon-hitbox:
|
140 |
-
$icon-reverbnation:
|
141 |
-
$icon-formulr:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
* _variables.scss
|
3 |
* Social Icons CSS Variables
|
4 |
*/
|
5 |
+
$green : #7ad03a;
|
6 |
+
$red : #a00;
|
7 |
+
$orange : #ffba00;
|
8 |
+
$blue : #2ea2cc;
|
9 |
|
10 |
// Socicons brand color codes.
|
11 |
+
$icon-modelmayhem : #000000;
|
12 |
+
$icon-mixcloud : #000000;
|
13 |
+
$icon-drupal : #00598e;
|
14 |
+
$icon-swarm : #fc9d3c;
|
15 |
+
$icon-istock : #000000;
|
16 |
+
$icon-yammer : #1175c4;
|
17 |
+
$icon-ello : #000000;
|
18 |
+
$icon-stackoverflow : #fd9827;
|
19 |
+
$icon-persona : #e6753d;
|
20 |
+
$icon-triplej : #e53531;
|
21 |
+
$icon-houzz : #7cc04b;
|
22 |
+
$icon-rss : #f26109;
|
23 |
+
$icon-paypal : #009cde;
|
24 |
+
$icon-odnoklassniki : #f48420;
|
25 |
+
$icon-airbnb : #ff5a5f;
|
26 |
+
$icon-periscope : #3aa4c6;
|
27 |
+
$icon-outlook : #0072c6;
|
28 |
+
$icon-coderwall : #3e8dcc;
|
29 |
+
$icon-tripadvisor : #4b7e37;
|
30 |
+
$icon-appnet : #494949;
|
31 |
+
$icon-goodreads : #463020;
|
32 |
+
$icon-tripit : #1982c3;
|
33 |
+
$icon-lanyrd : #3c80c9;
|
34 |
+
$icon-slideshare : #4ba3a6;
|
35 |
+
$icon-buffer : #000000;
|
36 |
+
$icon-disqus : #2e9fff;
|
37 |
+
$icon-vkontakte : #5a7fa6;
|
38 |
+
$icon-whatsapp : #20b038;
|
39 |
+
$icon-patreon : #e44727;
|
40 |
+
$icon-storehouse : #25b0e6;
|
41 |
+
$icon-pocket : #ed4055;
|
42 |
+
$icon-mail : #000000;
|
43 |
+
$icon-blogger : #ec661c;
|
44 |
+
$icon-technorati : #5cb030;
|
45 |
+
$icon-reddit : #e74a1e;
|
46 |
+
$icon-dribbble : #e84d88;
|
47 |
+
$icon-stumbleupon : #e64011;
|
48 |
+
$icon-digg : #1d1d1b;
|
49 |
+
$icon-envato : #597c3a;
|
50 |
+
$icon-behance : #000000;
|
51 |
+
$icon-delicious : #020202;
|
52 |
+
$icon-deviantart : #c5d200;
|
53 |
+
$icon-forrst : #5b9a68;
|
54 |
+
$icon-play : #000000;
|
55 |
+
$icon-zerply : #9dbc7a;
|
56 |
+
$icon-wikipedia : #000000;
|
57 |
+
$icon-apple : #b9bfc1;
|
58 |
+
$icon-flattr : #f67c1a;
|
59 |
+
$icon-github : #221e1b;
|
60 |
+
$icon-renren : #2266b0;
|
61 |
+
$icon-friendfeed : #2f72c4;
|
62 |
+
$icon-newsvine : #075b2f;
|
63 |
+
$icon-identica : #000000;
|
64 |
+
$icon-bebo : #ef1011;
|
65 |
+
$icon-zynga : #dc0606;
|
66 |
+
$icon-steam : #171a21;
|
67 |
+
$icon-xbox : #92c83e;
|
68 |
+
$icon-windows : #00bdf6;
|
69 |
+
$icon-qq : #4297d3;
|
70 |
+
$icon-douban : #3ca353;
|
71 |
+
$icon-meetup : #e2373c;
|
72 |
+
$icon-playstation : #000000;
|
73 |
+
$icon-android : #8ec047;
|
74 |
+
$icon-snapchat : #fffa37;
|
75 |
+
$icon-twitter : #4da7de;
|
76 |
+
$icon-facebook : #3e5b98;
|
77 |
+
$icon-googleplus : #dd4b39;
|
78 |
+
$icon-pinterest : #c92619;
|
79 |
+
$icon-foursquare : #f94877;
|
80 |
+
$icon-yahoo : #6e2a85;
|
81 |
+
$icon-skype : #28abe3;
|
82 |
+
$icon-yelp : #c83218;
|
83 |
+
$icon-feedburner : #ffcc00;
|
84 |
+
$icon-linkedin : #3371b7;
|
85 |
+
$icon-viadeo : #e4a000;
|
86 |
+
$icon-xing : #005a60;
|
87 |
+
$icon-myspace : #323232;
|
88 |
+
$icon-soundcloud : #fe3801;
|
89 |
+
$icon-spotify : #7bb342;
|
90 |
+
$icon-grooveshark : #000000;
|
91 |
+
$icon-lastfm : #d41316;
|
92 |
+
$icon-youtube : #e02a20;
|
93 |
+
$icon-vimeo : #51b5e7;
|
94 |
+
$icon-dailymotion : #004e72;
|
95 |
+
$icon-vine : #00b389;
|
96 |
+
$icon-flickr : #1e1e1b;
|
97 |
+
$icon-500px : #58a9de;
|
98 |
+
$icon-instagram : #9c7c6e;
|
99 |
+
$icon-wordpress : #464646;
|
100 |
+
$icon-tumblr : #45556c;
|
101 |
+
$icon-twitch : #6441a5;
|
102 |
+
$icon-8tracks : #122c4b;
|
103 |
+
$icon-amazon : #ff9900;
|
104 |
+
$icon-icq : #7ebd00;
|
105 |
+
$icon-smugmug : #acfd32;
|
106 |
+
$icon-ravelry : #b6014c;
|
107 |
+
$icon-weibo : #e31c34;
|
108 |
+
$icon-baidu : #2629d9;
|
109 |
+
$icon-angellist : #000000;
|
110 |
+
$icon-ebay : #333333;
|
111 |
+
$icon-imdb : #e8ba00;
|
112 |
+
$icon-stayfriends : #f08a1c;
|
113 |
+
$icon-residentadvisor : #b3be1b;
|
114 |
+
$icon-google : #4285f4;
|
115 |
+
$icon-yandex : #ff0000;
|
116 |
+
$icon-sharethis : #01bf01;
|
117 |
+
$icon-bandcamp : #619aa9;
|
118 |
+
$icon-itunes : #ff5e51;
|
119 |
+
$icon-deezer : #32323d;
|
120 |
+
$icon-medium : #000000;
|
121 |
+
$icon-telegram : #0088cc;
|
122 |
+
$icon-openid : #f78c40;
|
123 |
+
$icon-amplement : #0996c3;
|
124 |
+
$icon-viber : #7b519d;
|
125 |
+
$icon-zomato : #cb202d;
|
126 |
+
$icon-quora : #cb202d;
|
127 |
+
$icon-draugiem : #ffa32b;
|
128 |
+
$icon-endomodo : #86ad00;
|
129 |
+
$icon-filmweb : #ffc404;
|
130 |
+
$icon-stackexchange : #2f2f2f;
|
131 |
+
$icon-wykop : #328efe;
|
132 |
+
$icon-teamspeak : #465674;
|
133 |
+
$icon-teamviewer : #168ef4;
|
134 |
+
$icon-ventrilo : #77808a;
|
135 |
+
$icon-younow : #61c03e;
|
136 |
+
$icon-raidcall : #073558;
|
137 |
+
$icon-mumble : #5ab5d1;
|
138 |
+
$icon-bebee : #f28f16;
|
139 |
+
$icon-hitbox : #99cc00;
|
140 |
+
$icon-reverbnation : #000000;
|
141 |
+
$icon-formulr : #ff5a60;
|
142 |
+
$icon-battlenet : #0096cd;
|
143 |
+
$icon-chrome : #757575;
|
144 |
+
$icon-diablo : #8b1209;
|
145 |
+
$icon-discord : #7289da;
|
146 |
+
$icon-issuu : #f26f61;
|
147 |
+
$icon-macos : #000000;
|
148 |
+
$icon-firefox : #484848;
|
149 |
+
$icon-heroes : #2397f7;
|
150 |
+
$icon-hearthstone : #ec9313;
|
151 |
+
$icon-overwatch : #9e9e9e;
|
152 |
+
$icon-opera : #ff1b2d;
|
153 |
+
$icon-warcraft : #1eb10a;
|
154 |
+
$icon-starcraft : #002250;
|
155 |
+
$icon-keybase : #ff7100;
|
156 |
+
$icon-alliance : #144587;
|
157 |
+
$icon-livejournal : #0099cc;
|
158 |
+
$icon-googlephotos : #212121;
|
159 |
+
$icon-horde : #84121c;
|
160 |
+
$icon-etsy : #f56400;
|
161 |
+
$icon-zapier : #ff4a00;
|
162 |
+
$icon-google-scholar : #4285f4;
|
163 |
+
$icon-researchgate : #00ccbb;
|
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"}#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=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}}
|
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"}.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{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}
|
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}
|
assets/css/social-icons.scss
CHANGED
@@ -62,6 +62,7 @@
|
|
62 |
}
|
63 |
|
64 |
&.centre {
|
|
|
65 |
text-align: center;
|
66 |
}
|
67 |
}
|
@@ -85,5 +86,13 @@
|
|
85 |
li.social-icons-list-item {
|
86 |
display: block;
|
87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
}
|
62 |
}
|
63 |
|
64 |
&.centre {
|
65 |
+
padding: 0;
|
66 |
text-align: center;
|
67 |
}
|
68 |
}
|
86 |
li.social-icons-list-item {
|
87 |
display: block;
|
88 |
}
|
89 |
+
|
90 |
+
&.icons-background-square,
|
91 |
+
&.icons-background-rounded {
|
92 |
+
|
93 |
+
&.centre {
|
94 |
+
text-align: left;
|
95 |
+
}
|
96 |
+
}
|
97 |
}
|
98 |
}
|
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"}.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/fonts/socicon.eot
CHANGED
Binary file
|
assets/fonts/socicon.svg
CHANGED
@@ -138,4 +138,26 @@
|
|
138 |
<glyph glyph-name="reverbnation" unicode="" d="M506 309c-49-35-97-70-147-106-5-3-5-6-4-12 19-57 38-115 57-173 0-1 1-3 2-6-3 2-5 4-7 5-48 35-97 70-145 105-4 3-8 4-12 0-50-36-99-72-150-108-1-1-2-1-4-3 7 22 14 43 20 64 13 40 26 79 39 119 1 4 0 6-4 9-49 35-97 70-146 106-2 1-3 3-5 5l13 0c58 0 116 0 173 0 6 0 9 1 11 7 18 58 37 116 56 175 0 1 1 2 2 5 1-3 2-4 2-6 19-58 38-116 57-174 2-6 4-7 11-7 60 0 120 0 180 0l7 0c-3-3-4-4-6-5z"/>
|
139 |
<glyph glyph-name="formulr" unicode="" d="M142 444c-46-45-70-111-70-189l0-256 148 0 0 260c0 37 9 66 27 84 20 19 50 24 72 24l67 0 54 145-121 0c-71 0-132-24-177-68z"/>
|
140 |
<glyph glyph-name="instagram" unicode="" d="M256 466c69 0 76-1 103-2 26-1 39-5 48-8 12-5 21-11 29-19 9-9 15-18 19-29 4-10 8-23 9-48 1-28 2-35 2-104 0-69-1-76-2-103-1-26-5-39-8-48-5-12-11-21-19-29-9-9-18-15-29-19-10-4-23-8-48-9-28-1-35-2-104-2-69 0-76 1-103 2-26 1-39 5-48 8-12 5-21 11-29 19-9 9-15 18-19 29-4 10-8 23-9 48-1 28-2 35-2 104 0 69 1 76 2 103 1 26 5 39 8 48 5 12 11 21 19 29 9 9 18 15 29 19 10 4 23 8 48 9 28 1 35 2 104 2m0 46c-70 0-78-1-105-2-28-1-47-5-62-11-17-7-32-16-46-30-14-14-23-29-30-46-6-16-10-34-11-62-1-27-2-35-2-105 0-70 1-78 2-105 1-28 5-47 11-62 7-17 16-32 30-46 14-14 29-23 46-30 16-6 34-10 62-11 27-1 35-2 105-2 70 0 78 1 105 2 28 1 47 5 62 11 17 7 32 16 46 30 14 14 23 29 30 46 6 16 10 34 11 62 1 27 2 35 2 105 0 70-1 78-2 105-1 28-5 47-11 62-7 17-16 32-30 46-14 14-29 23-46 30-16 6-34 10-62 11-27 1-35 2-105 2z m0-124c-73 0-132-59-132-132 0-73 59-132 132-132 73 0 132 59 132 132 0 73-59 132-132 132z m0-218c-47 0-86 39-86 86 0 47 39 86 86 86 47 0 86-39 86-86 0-47-39-86-86-86z m167 223c0-17-13-31-30-31-17 0-31 14-31 31 0 17 14 30 31 30 17 0 30-13 30-30z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
</font></defs></svg>
|
138 |
<glyph glyph-name="reverbnation" unicode="" d="M506 309c-49-35-97-70-147-106-5-3-5-6-4-12 19-57 38-115 57-173 0-1 1-3 2-6-3 2-5 4-7 5-48 35-97 70-145 105-4 3-8 4-12 0-50-36-99-72-150-108-1-1-2-1-4-3 7 22 14 43 20 64 13 40 26 79 39 119 1 4 0 6-4 9-49 35-97 70-146 106-2 1-3 3-5 5l13 0c58 0 116 0 173 0 6 0 9 1 11 7 18 58 37 116 56 175 0 1 1 2 2 5 1-3 2-4 2-6 19-58 38-116 57-174 2-6 4-7 11-7 60 0 120 0 180 0l7 0c-3-3-4-4-6-5z"/>
|
139 |
<glyph glyph-name="formulr" unicode="" d="M142 444c-46-45-70-111-70-189l0-256 148 0 0 260c0 37 9 66 27 84 20 19 50 24 72 24l67 0 54 145-121 0c-71 0-132-24-177-68z"/>
|
140 |
<glyph glyph-name="instagram" unicode="" d="M256 466c69 0 76-1 103-2 26-1 39-5 48-8 12-5 21-11 29-19 9-9 15-18 19-29 4-10 8-23 9-48 1-28 2-35 2-104 0-69-1-76-2-103-1-26-5-39-8-48-5-12-11-21-19-29-9-9-18-15-29-19-10-4-23-8-48-9-28-1-35-2-104-2-69 0-76 1-103 2-26 1-39 5-48 8-12 5-21 11-29 19-9 9-15 18-19 29-4 10-8 23-9 48-1 28-2 35-2 104 0 69 1 76 2 103 1 26 5 39 8 48 5 12 11 21 19 29 9 9 18 15 29 19 10 4 23 8 48 9 28 1 35 2 104 2m0 46c-70 0-78-1-105-2-28-1-47-5-62-11-17-7-32-16-46-30-14-14-23-29-30-46-6-16-10-34-11-62-1-27-2-35-2-105 0-70 1-78 2-105 1-28 5-47 11-62 7-17 16-32 30-46 14-14 29-23 46-30 16-6 34-10 62-11 27-1 35-2 105-2 70 0 78 1 105 2 28 1 47 5 62 11 17 7 32 16 46 30 14 14 23 29 30 46 6 16 10 34 11 62 1 27 2 35 2 105 0 70-1 78-2 105-1 28-5 47-11 62-7 17-16 32-30 46-14 14-29 23-46 30-16 6-34 10-62 11-27 1-35 2-105 2z m0-124c-73 0-132-59-132-132 0-73 59-132 132-132 73 0 132 59 132 132 0 73-59 132-132 132z m0-218c-47 0-86 39-86 86 0 47 39 86 86 86 47 0 86-39 86-86 0-47-39-86-86-86z m167 223c0-17-13-31-30-31-17 0-31 14-31 31 0 17 14 30 31 30 17 0 30-13 30-30z"/>
|
141 |
+
<glyph glyph-name="battlenet" unicode="" d="M506 216c-3 7-7 13-11 19-14 16-30 29-46 40-2 1-3 3-5 2 11 1 20 3 30 8 7 4 10 10 9 19 0 7-3 13-6 20-8 12-19 21-30 29-6 4-12 7-19 11-2 1-3 2-1 4 2 3 3 5 4 8 9 17 19 34 27 52 2 5 5 10 6 16 0 2 0 5 0 7 0 1 0 1-1 2-1 0-2-1-2-1-1-2-2-5-4-7-7-11-14-24-22-35-7-12-14-24-22-36-1-2-2-2-4-1-13 5-25 9-37 13-16 5-33 9-49 11-2 0-4 1-5 3-1 3-3 6-5 9-17 30-37 59-62 83-11 10-24 19-41 21-1 0-2 0-4 0-5-1-9-2-13-5-8-5-13-12-16-21-8-16-12-33-14-51 0-6-1-12-1-18-2 0-2 2-3 3-5 6-11 12-18 16-5 4-11 4-18 1-9-4-15-12-20-21-5-13-8-26-8-40 0-6 0-12 0-18 0-2-1-3-3-3-3 0-6 0-9 0-12-1-25-1-37-2-11 0-22-1-32-3-3 0-6-1-9-3-1 0-3-1-2-2 0-1 2-1 3-1 16-1 31-1 48-1 12-1 23-1 35-1 1 0 2 0 3-1 5 0 5 0 5-5 4-29 11-57 22-84 1-2 0-4-1-5-3-6-6-11-10-17-14-24-25-49-32-76-4-15-7-29-5-44 2-15 11-24 24-28 9-2 19-2 28 0 16 3 32 8 47 15 5 2 8 4 13 6-1-3-2-5-3-8-2-5-4-10-4-16-2-11 1-18 12-23 3-1 7-2 10-3 8-1 17 0 24 1 16 4 29 11 43 19 2 2 3 2 5-1 8-13 16-26 25-39 6-10 13-20 20-28 3-3 6-5 10-5 1 2 0 3-1 4-3 4-5 8-7 11-3 7-7 12-10 18-8 16-17 31-25 46-2 4-2 4 2 7 10 8 20 16 30 26 11 10 22 21 32 34 2 3 4 3 7 3 13 0 26 0 40 1 14 1 26 2 39 4 19 3 37 7 54 16 11 6 21 14 22 28 0 0 0 0 0 0-1 2-1 4 0 6 0 0 0 1 0 1-1 3-1 7-2 10z m-305 172c2 14 5 28 11 41 3 6 5 11 10 15 6 8 15 9 23 6 5-1 9-4 13-7 15-12 27-29 37-46-34 0-66-7-95-25-1 6 0 11 1 16z m-80-31c1 11 2 22 6 32 2 5 5 10 9 13 8 7 22 5 26-5 1 0 1-1 1-2 0-12 1-24 3-37 0-2-1-1-2-1-7 0-13 0-20 0 0 0 0-1 0-1-7 0-13 0-20 0-2-1-3-1-3 1z m28-217c-6-1-11-1-16 0-13 2-20 10-21 23 0 9 2 17 4 25 4 13 9 26 17 39 17-29 38-53 67-70 0-1-1-1-1-1-16-7-33-13-50-16z m105-43c-11-6-22-10-34-11-2 0-3 0-4 0-16 2-20 14-15 27 0 1 1 2 2 2 5 3 10 7 15 10 5 4 10 7 15 10 2-3 4-6 6-10 5-8 10-17 16-26 0 0 2-1-1-2z m57 44c-13-12-26-24-40-34-2-2-3-2-4 1-5 10-10 21-16 31 0 1-1 2-1 4 21-1 40 4 58 14-18-5-37-7-56-6 0 2 1 2 2 3 40 34 76 72 108 114 2 3 2 4-1 5-4 2-8 5-12 7-1 0-2 1-3-1-12-17-27-31-42-45-29-25-60-47-92-69-2-1-3-1-5 0-22 13-37 31-49 52-15 24-23 51-29 80-4 13-6 27-7 41-1 3 0 4 3 4 12-2 25-2 36-3 3 0 3-1 2-3-10-17-15-34-15-53 0-1 0-2 0-2 5 17 11 34 22 50 2-11 4-21 6-30 10-42 23-82 39-121 1-3 2-3 4-2 4 3 8 5 12 7 1 1 2 2 1 3-9 19-13 38-17 58-8 37-12 74-14 111 0 3 0 4 3 6 18 11 38 16 59 17 32 2 64-4 94-13 15-5 29-10 42-16 1-1 2-1 1-3-7-11-13-21-21-32-9 18-23 32-40 41 6-6 13-13 18-21 5-7 10-15 14-24-4 1-9 3-13 4-12 5-24 8-36 12-34 9-68 16-102 20-7 1-7 1-7-6 0-4 0-7 0-10 0-2 0-2 2-2 24-2 47-10 70-18 32-11 63-25 93-40 1-1 1-2 1-4 0-23-7-44-18-65-13-24-30-44-50-62z m121 47c-6-5-13-8-20-10-16-4-33-6-50-6 17 29 28 60 28 94 1 0 2-1 3-1 15-12 29-23 41-39 3-4 5-8 7-13 2-10 0-18-9-25z m3 101c-4-2-8-2-12 0-9 6-20 10-30 15-1 0-2 1-1 3 6 11 13 23 19 35 1 1 1 2 3 1 9-7 19-13 26-23 3-5 6-10 6-16 0-7-4-13-11-15z"/>
|
142 |
+
<glyph glyph-name="chrome" unicode="" d="M352 256c0-53-43-96-96-96-53 0-96 43-96 96 0 53 43 96 96 96 53 0 96-43 96-96z m-95 113l231 0c-42 85-130 143-230 143-82 0-155-38-202-98l88-150c4 59 53 105 113 105z m237-17l-176 0c32-20 52-55 52-95 0-19-5-38-14-54l-116-202c6 0 11 0 17 0 141 0 255 114 255 256 0 33-7 66-18 95z m-234-211c-50 0-93 32-108 76l-108 183c-28-41-44-90-44-143 0-131 97-239 222-256l90 153c-16-8-33-13-52-13z"/>
|
143 |
+
<glyph glyph-name="diablo" unicode="" d="M428 291c-2 9-6 18-12 28-6 11-8 17-4 20 3 2 8 4 14 5-15 23-37 38-64 48-9 3-17 6-27 8-1 17-3 34-5 51 0 0-2-18-3-49-16 4-31 6-46 7-3 0-8 1-15 1-3 34-6 67-11 102 0 0-3-40-6-102-1 0-2 0-3 0-18 0-37 0-57 0-1 14-3 27-4 42 0 0-2-16-3-42-24-1-75-6-103-6 2-2 0-8 4-13 5-5 45-14 44-20l0-226c-2-15-39-26-43-29-3-3-4-12-5-11 34 1 71 3 100 5 2-26 3-52 6-77 2 28 5 54 6 78 23 1 40 2 46 2 4 0 7 0 10 0 2-38 4-76 8-112 4 40 7 78 9 112 12 1 25 2 38 5 7 2 14 4 21 6 1-31 3-62 6-91 3 36 6 67 8 97 12 5 23 10 34 18 21 14 37 33 49 56 13 23 15 52 8 87z m-220-150l0 235c16 1 29 2 40 2-2-66-4-150-1-236-10 0-23 0-39-1z m95 10c-5-4-15-6-35-8 6 102 5 172 1 233 14-2 27-6 40-12 6-3 11-6 16-9-2-51-4-118-2-188-9-7-15-12-20-16z m39 34c3 62 2 109 0 150 10-18 16-43 18-74 2-35-4-60-18-76z"/>
|
144 |
+
<glyph glyph-name="discord" unicode="" d="M449 393c-63 47-123 45-123 45l-6-7c75-22 109-55 109-55-46 24-91 37-132 41-32 4-62 3-89-1-2 0-4 0-7-1-16-1-53-7-100-27-17-8-26-13-26-13 0 0 36 35 115 57l-5 5c0 0-60 2-123-45 0 0-63-114-63-254 0 0 37-63 134-66 0 0 17 20 29 36-56 17-76 51-76 51 0 0 4-3 12-7 0 0 1-1 1-1 2-1 3-2 4-3 11-6 22-10 33-14 18-8 39-14 64-19 33-6 72-9 114-1 20 4 41 10 63 19 16 6 33 14 51 26 0 0-22-35-79-51 13-17 29-36 29-36 97 3 133 66 133 66 1 141-62 255-62 255z m-275-213c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z m160 0c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z"/>
|
145 |
+
<glyph glyph-name="issuu" unicode="" d="M257 386c-72 1-131-57-132-129 0-72 57-131 129-132 72 0 131 57 132 129 1 73-57 132-129 132z m-2-196c-36 0-65 30-65 67 0 36 30 65 67 65 36 0 65-30 65-67 0-36-30-65-67-65z m1 322c-1 0-1 0-1 0l-233 0c-12 0-22-10-22-22l0-234c0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-432c-98 1-177 82-176 180 1 98 81 177 179 176 98-1 177-82 176-179 0-99-81-178-179-177z"/>
|
146 |
+
<glyph glyph-name="macos" unicode="" d="M378 105l-32 0-90 129-91-129-31 0 106 151-106 151 31 0 91-129 90 129 32 0-106-151z m-122 407c-141 0-256-115-256-256 0-141 115-256 256-256 142 0 256 115 256 256 1 141-114 256-256 256z"/>
|
147 |
+
<glyph glyph-name="firefox" unicode="" d="M450 445c0 0 0-1 1-1-1 0-1 0-1 1m-286-181c1-1 1-2 2-2-1 1-1 1-2 2m-75 157c1 0 1 1 2 1 0-1 1-1 1-1-1 0-2 0-3 0m-46 22c0 0 0 0 0 0m-1-2c0-1 0 0 0 1l0 1 0-2m0 2c0 0 0 0 0 0 0 0 0 0 0 0m-28-124c0 0 0 0 0 0 0-1-1-1-1-1l1 1c0 1 1 2 1 3-1 0-1-1-1-3m220 31c1 0 2 1 3 2 1 0 1 0 1 1-1-1-2-2-3-3 0 0-1 0-2-1 1 0 1 1 1 1m9 8c0 0 0 1 0 2 0 1 1 2 1 3l1 2c0 0 1 0 1 0-1-1-1-2-1-3 0-1 0-1 0-1 0-1-1-2-2-3m3 11c0 0 0 0 0-1 0 0 0 0 0-1l0 1c0 1 0 2 0 1m1-2c1 0 1 0 0 0 1 0 0 0 0 0l0-1c0 1 0 1 0 1m240-170c0-1 0-1 0 0-1-1-1-2-2-3 1 1 1 2 2 3 15 29 33 85 19 134l0 2c-1 1-1 2-1 3l0 1c0 0-1 1-1 1 0-1-4-13-9-31 3 27 1 56-9 82-5 13-10 23-16 31-7 12-15 21-21 25l1-1c-1 1-1 1-1 1 0-1 1-3 2-8-13 20-32 30-35 31l-1 0c0 0 1-6 3-18-20 16-45 29-73 37 47-31 64-57 75-81-12 13-34 26-48 28 21-16 57-64 54-136-10 25-23 35-23 35 0 0 0-1 0-1l-1 1c4-26 4-45 4-59 0 0 0-1 0-1 0-1 0-2 0-4 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3-2-12-4-20-6-29-3 12-6 18-6 18l0-1c0 0 0 1 0 1 0 0-1-23-16-55-1-3-3-7-5-10 0 0 0-1-1-1 0-1 0-1-1-2l-1-2c0 0 0-1-1-1 0-1 0-1-1-2-6-7-10-11-14-12-1-1-2-1-3-1-1 0-1 1-2 1 1 3 1 6 0 8 0 0-4-1-7-5-2-2-3-4-5-5 0 0 3 4 3 4-2-1-4-3-6-5-7-7-13-16-17-13 4 1 6 5 7 9-3-2-10-8-26-10-7-1-34-6-71 12 5 1 13 3 19-1-6 7-21 5-31 9-10 3-22 16-29 22 25-6 51-3 69 6 1 1 2 1 3 2 2 1 3 2 5 3 10 7 25 18 34 19 1 0 2 0 3-1 9-2 15 7 8 16-7 8-25 19-48 14-19-5-34-20-60-9-2 0-3 1-5 2-1 1 5-1 4 0-5 2-14 6-17 7 0 1 4 0 4 0-5 3-9 5-12 8 0 0-1 0-1 1 0 0-1 1-1 1-1 1-2 2-2 2l0 0c0 0-1 1-1 1-8 10-6 20-4 25 1 5 5 9 7 11 1 0 1 0 1 0 4-1 6-2 6-2 0 0-2 2-3 3 1 0 1 0 1 1 3-1 9-4 12-5 5-2 7-5 7-5 0 0 1 1 0 3-1 1-2 4-7 6 3-1 5-2 8-3 1 4 2 8 1 15-1 5 0 6-2 8-1 1 1 2 2 1 0 1-1 2-1 3-1 2-1 3-3 5 0 1 0 1-1 1l-2 3c-1 1-2 2-2 3 2-4 5-7 6-9 1-1 1-1 2-1 2 3 10 8 19 13 2 1 3 2 4 3-5-3-11-7-15-10-4-3-7-6-8-8 8 9 38 24 45 31 1 1 2 1 2 2 0 0 0 0 0 0 4 3 6 6 7 10 2 4 4 14-2 17-4 1-8 2-15 2l-1 0c-6 0-14 0-25 0-15 0-23 14-26 20l0 0 0 0c5 17 15 32 29 44 1 0-4-1-3 0 1 1 8 5 9 5 1 1-7 3-14 2-7-2-8-2-12-5 0 0-1 0-1 0 2 2 7 4 6 4-8-2-17-7-25-13 0 1 0 2 0 3-4-2-12-9-15-14 0 1 0 2 0 3-2-2-5-5-7-8-7 1-14 3-20 3-2 0-3 0-3 0-1 0-1 0-2 0-1 0-2 0-3 0-1 0-2 0-3 0l-2 0c0 0-1 0-2 0-8 0-15-2-22-4-6 5-14 13-20 22 0 0 0 0-1 0 0 0 0 0 0 0 0-1 0-2 0-1-4 7-8 19-8 27 0 0 0 0 0-1 0 0 0 0 0 1 0 0-6-4-10-17-1-1-1-2-1-3 0 0 0-1 0-2 0 2 0 3 1 4 0 0 0 1 0 1 0-1 0-1 0-2 0 0 0 0 0 0l0-1c-1-1-1-2-1-3 0 0 0 0 0 1 0 0 0 0 0-1 0 0 0 1 0 2l-1-2c0 0 0 2 0 3 0-1-1-2-2-3 0 0 0 0 1 1 0 1 1 2 1 2 0 1 0 1 0 1 0-1-3-4-3-7-1-2-1-3-2-5 0 1 0 1 0 1l0 0c0 0 0 0 0 0-2-4-4-10-5-16-2-7-3-15-3-26-1-10 0-17 0-19 1 1 1 1 1 1 0 0 0 0 0 0 0 0-1-1-1-1 0 0 0 0 0 1-6-9-10-16-12-20-8-14-15-37-21-72l0 1 0-1c0 0 0 0 0 0 0 0 0 0 1 1 0 0 0-1-1-1 0 0 1 1 2 4 0 1 0 1 0 2 2 5 5 13 10 21-6-19-11-48-8-91 0 0 0 0 0 0 0 0 0 0 0-1 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0-1 0-1 0 0 1 3 1 6 0 1 0 1 0 2 1 5 2 11 4 18 1-29 9-64 31-103 17-30 63-99 178-124-1 0-1 0-2 0 1 0 1 0 2 0-5 1-9 3-13 5 0 0 0 0-1 1-4 2-6 4-7 5 1 0 3-1 7-2 14-4 44-12 68-11l-1 0c0 0 0 0-1 0-2 0-4 1-5 2-4 2-5 4-5 4 0 0 1 0 3 0 16 0 91-1 133 32 10 8 17 17 19 24 0 0 0 0-1 0 0 0-2-1-4-2 2 1 3 2 4 2l0 2 1 0c0 0 0-1-1-1l0-1c5 3 10 6 15 9 8 6 18 13 27 22 1 2 3 3 4 5l0 1c0 0 1 0 1 0 1 1 1 2 2 3l1 0c1 1 2 3 3 4 4 5 8 10 10 15l1 1c6 10 10 21 10 34 0-3-1-6-2-9 0 0-1-1-1-1 1 1 1 1 2 2-1 14-2 22-5 29"/>
|
148 |
+
<glyph glyph-name="heroes" unicode="" d="M256 512l-222-128 0-256 222-128 222 128 0 256z m-164-344c-61 102-10 227 86 263 1 0 2 0 6 1-79-79-71-188 22-247-18-4-34-8-50-11-17-4-34-8-51-11-5-1-9-1-13 5z m322-18c-39-58-95-83-165-79-34 3-66 15-93 35-3 3-8 7-10 10 47-11 92-18 134 10 42 28 52 73 59 121 27-30 51-58 76-86 4-4 1-7-1-11z m32 93c-2-20-7-40-16-60-5 16-9 31-14 45-1 2-1 4-2 7-37 94-107 127-204 97-6-2-13-5-22-8 10 37 20 72 29 106 2 7 5 10 11 10 58 5 108-14 152-50 45-38 71-87 66-147z"/>
|
149 |
+
<glyph glyph-name="hearthstone" unicode="" d="M508 261c-1 0-2 1-3 2-30 18-61 35-90 53-1 1-2 1-2 2-5 12-12 24-20 34-1 1-1 2 0 3 4 20 9 40 14 59 1 2 1 2-1 2-19-5-37-9-55-13-3-1-6-2-9-1-9 4-18 8-27 12-1 0-2 1-3 2-1 1-2 3-3 5-18 30-36 59-54 89-1 2-2 2-3 0-5-9-11-18-16-28-14-22-28-45-41-68-1-1-2-2-3-3-7-4-13-8-20-11-2-1-4-1-6 0-13 4-27 9-40 14-7 2-14 4-22 7 0-1 0-1 0-2 5-20 10-40 14-60 0-1 0-2 0-3-5-12-10-25-17-38-1-2-2-3-4-4-27-15-53-30-80-45-5-3-9-5-14-8-2-1-2-1 0-2 0 0 0-1 1-1 30-19 60-38 90-57 1 0 2-1 3-2 5-11 12-21 16-32 0-1 0-2 0-4-6-20-12-40-19-61 0 0-1-1 0-2 0 0 1 0 2 0 20 5 40 10 61 15 2 1 3 0 4-1 11-6 21-12 32-16 5-2 9-5 11-10 16-29 33-57 49-86 1-3 2-3 4 0 17 29 34 58 52 87 1 2 2 2 3 3 13 6 25 11 37 19 2 1 3 1 4 1 20-5 40-10 60-15 3 0 3 0 2 3-3 12-7 24-10 36-2 7-4 16-7 23 0 2-1 3 0 5 8 11 15 21 19 34 0 1 1 2 2 3 21 13 41 26 62 39 9 6 18 11 27 17 3 1 3 2 0 4z m-160-7c-3-12-5-24-8-36-2-7-5-13-8-19-1-3-3-5-6-8-1-1-3-2-4-3-6-3-9-7-11-12-1-2-2-3-3-3-12-6-23-11-35-16-1 0-2 0-4 0-10 1-21-1-31-5-4-1-6 0-9 0-16 6-32 11-50 16 6 2 12 4 18 6 6 2 12 4 19 6 1 0 3 1 4 2 7 6 17 10 26 13 9 4 19 7 28 11 1 0 2 1 4 2 2 2 3 3 5 6 6 5 11 12 15 19 1 2 2 4 4 5 2 1 2 2 2 3 0 11 0 23-1 34 0 8-2 16-3 23 0 0-1 1-2 2-3 3-6 7-9 11-3 3-6 6-6 11 0 2-1 2-3 2-10-3-20-2-30-2-3 0-5-2-8-3-10-3-17-11-25-16-1-1-1-2-1-3-2-8-4-16-5-24 0-1 0-2 0-3 3-5 6-10 8-15 1-1 2-2 3-3 6-2 11 1 17 3 2 0 1 2 0 3-2 3-4 7-6 10-3 5-1 8 5 8 6 0 12 0 18 0 3 0 6-1 9-3 4-2 6-5 8-9 3-8 5-17 6-25 1-3-1-6-1-10-1-3-3-4-4-6-10-9-23-11-35-15-6-1-12 0-18 0-6 0-9 3-13 7-8 8-18 16-24 27-1 1-2 2-3 4-2 5-4 10-7 15-5 9-7 20-9 30 0 1 0 2 0 3 1 5 3 10 4 15 1 2 1 2 3 2 4 1 7 3 11 4 2 0 3 1 4 3 4 6 8 11 12 17 0 1 1 2 2 2 11 6 22 12 32 17 1 1 3 1 4 1 0 0 0 0 0-1 6-2 12-2 18 0 2 1 3 1 4 0 14-5 28-10 43-16 1-1 3-2 4-3 9-11 18-21 28-31 2-2 3-4 3-7 4-14 8-28 11-41 1 0 0-2 0-5z"/>
|
150 |
+
<glyph glyph-name="overwatch" unicode="" d="M291 435c28-6 55-18 77-36l48 57c-45 37-104 57-163 56-57-1-113-20-158-56l48-57c42 33 97 46 148 36z m216-129c-10 52-38 102-77 138l-49-56c39-37 61-91 57-144-2-27-9-53-23-76l-98 95-50 107 0-162 100-96c-45-35-106-46-160-31-22 6-43 16-61 30l101 97c0 53 0 109 0 162l-50-107-99-96c-30 53-31 121-2 175 9 17 21 33 35 46l-48 56c-1-1-2-1-3-2-50-48-81-117-79-188 0-72 33-144 88-191 51-45 120-68 188-61 73 5 143 44 186 104 42 56 58 131 44 200z"/>
|
151 |
+
<glyph glyph-name="warcraft" unicode="" d="M511 256c0 51-14 98-39 137l0 65-59 0c-44 34-98 54-158 54-35 0-70-7-100-21-7-3-13-6-20-9-1-1-2-2-4-2-6-3-11-6-16-10 0 0-1-1-2-2-5-3-10-6-14-10l-60 0 0-66c-25-40-39-86-39-136 0-42 10-81 28-117l0-79 63 0c45-37 102-60 164-60 63 0 120 23 165 60l63 0 0 79c18 36 28 75 28 117z m-134-178c-12-8-25-15-38-21-26-10-54-17-84-17-120 0-217 98-217 218 0 120 97 217 217 217 120 0 217-97 217-217 0-75-38-141-95-180z m27 326l-77 0 0 0 0-1 0 1 4-24 0-3-30-172-47 182 0-1 0 1-10-41-34-136 0 0-36 167 2 24 0 3-68 0 8-27 54-241-5-28 79 0 0 1-6 26 9 32 9 35 22-68-8-25 0-1 88 0-2 6-8 23 1 6 39 228 13 28 3 5"/>
|
152 |
+
<glyph glyph-name="opera" unicode="" d="M426 447c-45 40-104 65-169 65 0 0 0 0-1 0-141 0-256-115-256-256 0-137 108-249 244-255 4 0 8-1 12-1 66 0 125 25 170 65 53 47 86 115 86 191 0 76-33 144-86 191z m-302-197c0 0 0 12 0 12 1 55 19 105 48 138 24 28 54 45 87 45 75 0 135-85 135-189 0-104-60-189-135-189-33 0-63 17-87 45-29 33-47 83-48 138z"/>
|
153 |
+
<glyph glyph-name="starcraft" unicode="" d="M183 337l-52 0c0-6 0-3 0-9l102-110c0 36 0 84 0 119l-25-25z m-52-245c0-7 1-16 6-21 27-29 59-52 96-71 0 41 0 75 0 116l-102 0c0-10 0-13 0-24z m0 312c0-3 0-3 0-6l102 0c0 33 0 60 0 92-21 7-40 12-60 19-12 4-24 4-37 0-23-7-47-13-72-20 13-9 24-16 35-24 23-15 32-35 32-61z m182-4l72 0c0 3 0 1 0 4 0 26 9 46 30 61 11 8 23 15 36 24-26 7-49 13-73 20-12 4-24 4-36 0-20-7-40-12-60-19 0-40 0-73 0-114l25 23 6 0z m43-286c-28 6-53 23-74 50 0-57 0-107 0-164 37 19 69 42 96 71 5 5 7 14 7 21 0 9 0 11 0 20-2 0-3 0-4 0-8 0-16 1-25 2z m-257 235l87 0 23-20 51 56 0 3-219 0c0 0-14-6-14-17 0-6 0-17 0-21 0 0 0 0 0 0 0-1 0-1 0-1l154-179c0 0-67 0-88 0-21 0-36 15-36 15l-55-57c0 0 216 0 246 0 30 0 19 32 19 32z m362-12l49 51-201 0c0 0-21-14-34-41-1-2-3-7-3-7 0 0-36-85 3-147 74-120 187-43 187-43-1 0-2 0-3 0l-14 0c-128 5-106 159-102 185 0 1 0 3 0 3l2 9 87 1z m-107-14c-4-21-8-97 31-143 0 60 0 96 0 156l-29-1-2-8c1 0 0-1 0-4z"/>
|
154 |
+
<glyph glyph-name="keybase" unicode="" d="M505 263c-5 4-11 7-16 10-2 2-4 4-6 5-21 10-41 19-62 26-11 5-17 13-20 24-3 7-3 15-5 23-2 8-3 17-8 25-6 12-20 13-29 3-2-2-4-5-6-8-5 14-10 28-16 41-2 7-6 13-10 19-10 12-30 16-41 5-5-4-9-9-13-13-7-9-7-9-15-1-6 5-12 8-19 9-9 2-16-1-21-7-6-7-9-15-9-23-1-10-3-20-5-30-1 1-1 2-1 2-8 14-23 15-31 2-3-4-5-8-8-13-6-14-12-28-18-43-2-5-5-9-10-12-4-2-8-4-12-6-2-1-4-1-4-3-1-1-2-1-3-1-10 2-19 3-29 4-6 1-8 0-8-7 0-6-1-13-1-20 0 0 0 0 0 0-2 1-4 0-5-1-6-4-12-7-17-12-4-4-9-4-15-3-6 1-13 1-19 0-10 0-19-2-23-12 0-4 0-8 0-12 6-18 17-31 33-40 3-4 9-5 13-6 3-1 7-1 9-4 11-10 24-17 38-23 19-8 38-14 58-19 4 0 5-1 2-5-2-3-2-6-2-10-1-10 4-18 10-25 14-14 32-21 51-25 25-6 51-6 77-7 16-1 32 1 48 1 5 0 8 2 11 5 6 8 12 16 19 23 26 26 53 52 80 78 11 10 22 21 33 31 2 2 4 4 5 6 9 10 20 19 27 31 0 3 0 7 0 10-2 3-4 6-7 8z m-346 50c4 11 9 22 13 33 3 6 6 13 10 19 1 2 2 5 5 5 3 0 3-3 5-5 0-2 1-3 1-5 3-7 5-15 7-23 0-2 0-5 2-6 2 0 3 2 4 3 3 5 4 9 6 14 1-1 3-1 4-2 6-1 12-1 17-2 22-2 44-3 66 2 10 2 19 4 28 9 0 0 1 1 1 2 2-1 4 1 5 1 3 2 6 4 9 6 1-3 2-6 3-9 1-2 1-4 2-7 2-2 1-4-1-5-3-2-5-3-7-5-2-1-4-1-4-3-1 0-1 0-2 0 0 0 0 0-1 0-31-15-64-16-98-12-11 1-23 3-34 5-2 0-3-1-4-1-2 8-4 16-7 24 0 2-1 5-3 5-3 0-3-3-4-4-5-10-8-21-12-31-1-3 0-3 2-3-1-1-2-3-1-5 0 0 0 0 0 0-1-1-1-2-1-2 1-5 4-8 7-11 8-5 16-7 24-8 24-5 48-6 72-6 14 1 27 2 41 5 18 4 35 12 48 27 0 0 0 0 0 1 1 0 2 0 2 0 3 0 6-1 9-1 2 0 6-3 8 0 2 2-1 6-1 9-2 9-3 18-5 27-1 1-1 3-3 4-2 0-2-2-3-3-1-1-2-3-2-4-3-4-4-9-6-12 0 0 0 0 0 0-2 1-5 2-4 5 3 9 6 18 12 25 3 4 5 4 7 0 3-5 5-10 6-15 2-10 3-19 5-29 1-6 3-12 8-16 7-8 12-18 13-29 0-1 1-2 1-3-20-2-40-4-60-5-13-1-27-4-40-1-2 0-3 1-5 1-33 4-66 9-99 13-11 1-21 3-32 5-10 3-21 4-32 5 8 3 14 9 18 18z m132-64c8 0 9-1 7-9-1-4-3-7-7-9 2 6 3 12 0 18z m-14-21c-15-3-32 7-37 22-2 4-1 6 4 5 11-1 22-3 34-4-6-8-7-16-1-23z m-115 40c2-1 6 0 7-3 1-4-2-10-7-14 2 6 2 11 0 17z m-40 5c9-2 19-3 29-4-5-7-6-13-1-20-15-1-27 6-32 18-2 5-1 6 4 6z m179-181c-1-3-2-5-5-5-4 0-7 0-10 0-9-1-17-2-26-1-8 0-17 0-26 1-16 2-31 5-45 12-9 4-16 10-21 17-3 4-5 8-3 13 3 2 4 0 6-1 9-6 20-9 31-10 25-3 50-1 74 7 15 6 28 12 39 24 5 5 9 11 8 19-2 11-10 18-20 18-3 0-6 0-9 0-7-2-14-5-21-8-11-4-22-10-34-14-21-8-43-14-66-11-32 4-62 14-91 29-8 5-15 11-22 17 0 0-1 0-1 0 1 2 1 4 2 6 0 2 0 3 0 5 1 1 1 2 1 4-1 10-1 21-6 30 6 3 10 7 15 11 3 1 5 4 9 2 0 0 0 0 0 0 1-9 3-17 9-24 4-8 11-11 19-13 10-3 21-2 31 0 18 3 33 9 45 23 3 4 6 9 9 14 2 0 3-1 5-1 2-1 2-3 2-5 3-14 10-27 21-37 14-12 31-19 50-22 11-1 21 2 29 11 4 3 6 7 8 11 5 8 8 17 10 27 1 3 2 5 6 5 6 0 13 0 20 0 21 1 43 2 64 3 0-1-1-3-1-4-5-21-15-40-28-57-14-18-31-34-49-48-16-12-26-28-29-48z m-124 44c2 5 6 6 10 6 23 1 45 7 66 16 12 5 23 10 35 15 4 2 7 3 11 3 6 1 10-1 13-6 3-5 0-8-2-12-7-8-15-13-24-17-29-13-59-18-90-12-7 1-13 4-19 7z m251 68c-13-17-27-31-43-45-14-12-28-23-41-35-5-4-8-9-12-13-3-5-5-11-6-17 0-3 1-5 3-6-6-2-11 0-17 0-2-1-1 2-1 3 0 14 6 25 14 35 8 9 18 15 27 23 28 25 51 52 63 89 6 18 7 37 3 56-1 1-1 2-1 4 14-5 28-11 42-17-4-29-13-55-31-77z m-119-35c-33-19-68-32-106-33 17-9 91 14 106 33z"/>
|
155 |
+
<glyph glyph-name="alliance" unicode="" d="M70 408c0 0 0 1 1 1 6 5 12 8 21 7 6-1 11-3 18-5 7-3 13-6 21-8 4-2 9-3 13-3 14 0 23 10 22 23 0 0 0 1 1 1 2-3 6-5 10-6 6-1 11 0 16 2 8 3 12 9 10 18 0 3-1 6-2 9 0 3 0 4 2 4 5 0 10 0 15-1 10-2 19-7 28-12 2-1 4-2 7-4 0 3-1 5-1 8-1 7-1 13 2 19 0 3 1 5 3 5 1 0 1-2 2-4 2-6 1-13 1-20 0-2-1-4-1-6 2 0 3 1 3 2 6 3 12 7 19 9 9 4 19 6 28 5 3-1 3-1 2-4-1-3-1-6-2-8-1-10 3-17 12-19 9-3 18-2 26 4 0-1 0-2 0-2-1-10 7-20 17-21 5-1 10 0 14 1 8 2 15 5 22 8 7 2 13 4 19 5 9 1 17 1 23-6 0-1 1-2 3-1-3 6-8 9-15 11-7 1-15 0-22-1-9-1-17-3-26-3-6 0-12 0-18 4-2 1-4 2-4 4 1 2 4 3 6 3 4 1 8 0 12-1 3 0 7-1 11 0-15 10-31 12-47 13 8 3 16 6 25 11-2 0-3 0-5 0-9-1-19-1-29 1-3 1-3 1-1 4 3 5 8 7 14 9 4 2 8 2 12 3-3 2-7 3-11 3-11 1-22 0-33-3-9-1-17-3-26-4-2 0-3 1-3 3 0 7 2 12 7 15 4 3 9 5 14 6 1 1 3 1 5 2-1 0-2 0-3 0-11 0-21-3-30-9-2-1-3-1-5 0-7 5-11 12-13 20-1 4-1 7-1 12-2-2-1-4-3-6-1 2-1 4-3 7 0-4 0-8 0-11-2-9-6-17-14-22-2-1-3-1-5 0-6 4-13 7-20 8-4 1-8 1-12 0 1 0 2-1 3-1 6-1 11-3 16-6 4-5 7-10 6-17 0-2-1-3-3-2-7 1-15 2-22 4-13 2-25 4-37 3-4-1-7-1-11-3 0-1 1 0 2 0 5-1 10-2 16-4 3-2 7-4 9-8 1-2 1-3-2-3-10-2-20-2-30-1-1 0-2 0-3-1 9-4 17-7 26-11-17 0-34-2-48-13 1-1 2 0 3 0 6 0 11 2 17 2 2 0 4-1 7-2 2-1 2-2 0-4-4-3-9-5-14-5-7-1-14 0-22 1-9 2-17 3-26 3-5 0-8 0-12-2-4-1-6-4-8-8 0-1-1-1 0-2 0-1 0 0 1 0z m128-128c-4-4-8-6-11-9-3-4-6-8-6-13-1-24 9-42 27-56 2-2 4-3 7-4 11-5 24-2 32 8 9 9 10 22 4 33-3 4-6 8-9 11-4 5-8 9-11 14-6 9-7 18-4 28 2 5 4 10 7 14 4 8 7 17 7 25 0 3 0 3-3 3-5-1-8-3-12-5-4-1-7-3-10-4-9-1-14 2-17 9-1 3-2 5-2 8-1 7-2 13-3 19-1 2 0 2 1 3 6 1 11 0 16-4 3-2 5-4 8-6 8-6 18-8 28-9-1 0-1 0-1 1-12 7-21 15-30 26-2 3-5 5-8 8-8 6-16 6-23-2-1-1-2-3-3-4-6-8-9-19-10-29 0-11 4-18 13-22 3-1 5-2 9-4 3-1 5-2 8-4 11-6 13-17 6-27-4-3-7-6-10-8z m112 36c4 2 8 5 12 6 3 2 7 3 10 5 5 3 7 6 8 11 3 18-4 32-16 44 0 1-1 1-1 1-4 3-8 3-11 2-4-3-8-5-11-8-5-4-9-8-13-12-5-7-12-12-19-16-1-1-3-1-4-3 10 1 20 3 28 9 3 2 6 5 9 7 5 3 10 4 15 4 2-1 3-1 2-3-1-3-2-6-2-9-1-5-2-10-3-16-3-10-10-13-20-11-3 1-6 3-9 4-4 2-7 3-12 4-2 1-3 0-3-2 1-9 3-17 7-25 2-2 3-5 5-8 3-8 5-15 3-24-1-8-5-13-10-19-4-5-9-9-12-14-12-17-6-36 12-44 11-4 20-2 29 4 15 12 24 27 26 47 1 11-2 20-11 26-3 3-6 6-9 8-3 3-5 5-7 9-5 8-2 17 7 23z m-215-129c2 3 4 6 6 9 2 5 4 10 7 14 2 6 5 12 8 17 5 9 12 12 22 9 2 0 5-2 7-3 0 0 1-1 2 0-2 6-5 10-11 12-4 2-9 2-13 2-10 0-19-3-28-8-1-1-2-2-2 0-2 16-3 32 0 48 2 15 10 27 23 35 3 1 6 3 10 5 4 3 8 5 11 8 2 2 5 4 6 7 0 0-1 1-1 1-1 0-1 0-2 0-13 1-25 0-38-4-2-1-2 0-3 1 0 4-2 7-5 8-2 1-3 2-5 2-2 0-2 1-2 3 0 1 0 1 1 2 2 11 8 19 17 25 6 4 13 7 20 9 1 1 2 1 1 2-7 7-14 12-23 15-6 1-12 1-17-2-2 0-3-1-3-3 0-5 2-9 6-12 3-3 3-3 0-6-6-4-10-10-13-16-10-16-16-33-16-51 0-2 1-3 2-4 3-2 6-3 9-4 1 0 2 0 1-1-1-6 2-10 5-14 1-1 2-2 1-3-4-26-2-52 2-78 1-5 1-5-3-7-8-4-12-11-10-20 1-1 1-2 2-3 10-4 19-4 26 5z m339 19c-2 1-3 1-2 3 5 27 7 54 2 80 0 2 0 2 1 3 4 4 6 9 5 14 0 1 0 2 2 2 2 0 5 1 8 3 2 1 3 3 3 5-1 21-8 39-20 55-3 4-7 7-10 11-3 4-3 4 1 7 2 2 4 4 5 6 1 7 0 8-7 9-11 3-28-5-36-16 1 0 2-1 3-1 8-3 15-6 22-11 8-7 13-15 14-25 0-2 0-3-2-3-6 0-10-3-11-10-1-2-1-2-3-1-13 4-26 5-38 4-1 0-2 0-3-1 1-1 2-3 3-4 4-4 8-6 12-9 6-3 10-5 15-9 10-6 16-14 19-25 5-19 4-37 2-55 0-1-1-2-2-1-9 7-21 9-34 8-5 0-9-2-13-5-3-2-4-5-5-9 3 1 5 2 7 2 9 4 16 2 22-5 2-2 3-4 4-6 3-5 5-11 8-16 3-6 5-12 8-18 7-10 18-13 29-8 1 1 2 1 2 3 2 6 1 11-3 16-3 4-5 6-8 7z m-111-88c-5-1-7-3-9-7-2-5-2-9-3-13-2-10-6-19-13-27-8-10-17-19-28-27-1-2-3-3-5-4-5-3-11-3-17-1-3 2-7 4-10 7-11 8-20 19-29 30-4 6-7 13-8 21 0 4-1 9-3 14-1 3-4 6-9 6-4 1-7-1-10-5-2-3-3-8-4-12-1-7 0-14 3-21 2-3 5-6 9-6 0 1 0 1-1 2-3 5-5 12-4 19 0 2 1 4 2 6 2 1 3 1 4-1 1-1 1-3 1-5 1-10 6-18 11-25 4-7 9-13 14-19 1-2 2-3 1-5-1-8 0-15 3-22 1-2 3-4 5-6 0 2-1 3-1 5-1 4-2 8-1 12 0 2 2 4 5 4 6 0 12-3 16-7 4-3 3-3 1-6-3-3-6-8-8-12-2-4-3-8-1-14 1 3 2 5 4 7 1 1 3 3 4 4 3 2 6 4 8 6 5 3 5 3 11 0 6-4 12-8 15-15 0 0 1 0 1 0 1 6-1 11-4 16-2 3-4 7-6 10-1 1-2 2-1 3 4 3 8 7 15 8 8 1 9 0 9-8 0-3-1-6-1-10 0-1-1-1-1-3 2 2 3 4 5 6 4 7 4 15 3 23-1 2 0 3 1 5 6 7 12 14 16 22 4 7 7 14 8 21 0 2 1 3 2 5 0 1 1 2 2 2 1 0 2-1 2-2 4-6 3-16-1-21-1-1-1-2-2-3-1-1-1-1-1-2 1 0 1 0 2 0 3 1 5 3 7 5 5 11 6 22 0 33-1 5-4 7-9 7z m100 42c-3 2-7 4-11 7-3 1-5 3-7 7-1 1-2 2-1 4 2 1 3 2 5 1 2 0 4-1 6-1 1-1 2-1 4 0-3 1-5 3-7 5-2 1-4 2-7 1-2 0-2 1-2 2 1 4 1 9 1 13-1 9-5 17-12 22-9 6-19 5-26-1 6-2 6-2 12-8 2-2 4-4 8-3 2 0 3-1 3-3-1-8-2-17-4-26-5-23-17-44-31-64-1-1-2-1-2 0-4 4-7 8-11 11-4 5-8 8-13 11-5 2-10 2-15 0-3-2-6-3-10-3-1 0-1 0-1-1 1-8 7-12 14-10 3 0 6 2 8 2 9 4 14 1 17-9 0 0 1-1 1-2 1-6 1-12 1-18 1-6 1-14 4-20 0-2 1-3 3-5 0 1 0 2 0 3-1 12 2 23 7 33 5 9 12 16 20 23 3 2 3 2 5-1 3-3 4-6 6-8 1-2 3-4 6-5-4 10-5 21-4 31 0 7 2 14 6 20 1 2 2 2 4 0 2-1 3-3 3-5 0-4 0-8 0-11 0-3 1-6 3-8 0 2 1 4 1 6 0 2 0 4 1 5 1 5 5 6 9 5 5-1 8-4 11-8 2-5 1-9-3-12-1-1-3-2-4-3 3 0 5 1 7 1 8 4 10 13 4 19-3 0-6 2-9 3z m-233-35c3-1 6-2 9-3 2 0 5 1 7 2 2 2 3 6 4 8 1 1 0 2-1 2-3 0-6 1-8 2-7 4-13 3-19-1-5-3-9-7-13-11-3-3-5-5-8-8-1-1-2-1-3 0-7 10-13 20-18 31-9 18-15 38-16 59 0 2 0 3 3 3 3-1 5 0 7 2 4 4 7 8 13 9-9 7-21 6-29-1-5-4-7-11-8-17-1-5-1-11 0-16 0-1 1-2-1-2-7 2-11-3-15-6 1 0 2 0 4 0 2 1 4 2 6 2 2 0 4-1 5-2 1-2 0-3-1-4-2-2-3-4-5-6-4-2-8-4-11-6-4-2-7-4-10-7-3-4-4-9-1-14 2-4 7-6 12-6-1 1-2 2-4 3-4 3-5 6-2 11 1 3 4 6 7 8 7 4 12 2 14-6 0-2 0-4 1-6 0 0 0-1 1-1 1 2 1 4 2 7 0 4 0 8 0 11 1 3 1 5 3 6 2 2 3 2 5-1 1-2 2-4 3-7 3-9 3-19 2-29-1-5-2-10-3-15 3 2 5 4 7 7 2 2 3 6 5 8 1 1 2 1 3 0 12-10 21-22 26-37 2-7 3-15 2-22 1 0 1 1 1 1 3 6 4 12 4 18 2 8 1 16 3 24 1 11 6 14 17 10z m98 36c3 5 4 10 4 16 0 4-1 5-5 6-1 0-2 0-4 0-3 0-6 0-10 0-7-1-9 1-12 8 0 3-1 5-3 6-2 2-3 2-5 0-1-2-2-5-3-7-2-5-5-7-10-7-2 0-5 0-8 0-3 0-7 1-10-1-2 0-2-1-3-3 0-7 2-14 6-20 3-3 5-7 8-11 4-5 5-10 5-16 0 0 0-1 1-1 2 1 2 4 3 6 1 3 1 6 2 8 1 2 3 2 5 1 1 0 3-1 2-4-1-3 0-7 1-11 2-6 6-12 7-18 1 2 1 5 1 7-1 4-2 9-3 13 0 3 0 6 1 10 2 3 4 4 6 4 3-1 4-3 5-5 0-3 1-5 1-8 1-1 1-3 3-3-2 8 1 13 6 19 4 4 6 8 9 11z m-51 120c-3-1-4-2-3-4 0-8 3-15 8-21 4-5 8-9 12-14 1-1 2-1 3 0 4 4 9 8 13 13 5 7 8 14 8 22 0 2 0 3-3 4-6 1-12 2-19 2-7 0-13-1-19-2z m5 108c-2-3-4-7-5-11-2-5-1-9 2-13 8-9 18-10 28-5 1 0 2 1 4 2 6 4 8 10 5 17-1 3-3 5-4 7-5 6-6 12-5 19 0 2 0 4-1 6-2-4-4-8-5-12-1-5-1-10-1-14 0-3 0-6-1-8-1-1-2-2-4-2-1 0-1 1-2 3-2 5-2 11-2 16 0 4 0 8-1 12-1 2-2 4-4 5 1-4 1-8 0-12-1-4-3-7-4-10z m20-56c-1-1-1-3-1-4-1-5 1-10 2-14 2-4 3-8 3-12 0-1 0-2-2-3-4-2-9-3-14-2-4 2-5 3-4 7 1 5 3 9 4 14 1 4 2 8 0 13-2-7-7-14-10-20-3-6-4-13-4-20 0-2 0-3 2-4 12-5 25-5 36 0 2 1 3 2 3 4 0 6-1 12-3 18-4 8-10 15-12 23z m-192-55c0 3-1 5-5 4-4-1-5-3-6-6-2-7-1-13 2-19 0 5 2 9 5 13 2 3 3 5 4 8z m383-1c-1 3-3 5-7 6-2 0-3 0-4-3 0-4 1-6 3-9 2-4 6-8 6-13 3 6 4 12 2 19z"/>
|
156 |
+
<glyph glyph-name="livejournal" unicode="" d="M176 462c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0z m95 20c-34 0-66-7-95-20 2-1 3-2 5-4 5-5 10-10 15-15 1-1 1-1 1-1l172-172c-53-31-94-73-124-128l-173 173c-1 1-1 1-2 2-5 6-11 11-16 16-1 1-2 2-3 4 26 57 67 99 126 124-1 1-1 1-1 1 0 0 0 0 0 0-15 15-30 29-44 44-6 5-11 7-18 3-9-4-17-9-25-14-28-19-51-42-70-69-6-9-12-18-17-29-3-6-3-10 3-15 15-15 30-30 45-45-13-29-19-62-19-95 0-133 108-241 240-241 133 0 241 108 241 241 0 132-108 240-241 240z m25-359c20 46 52 77 96 98 8-41 16-80 24-123-42 9-80 17-120 25z"/>
|
157 |
+
<glyph glyph-name="googlephotos" unicode="" d="M384 256c0 42 0 86 0 128l0-1c-41 42-83 84-124 125-1 1-2 3-4 3 0-42 0-85 0-127 0-18 0-36 0-55 7-17 14-35 21-52 17-7 35-14 52-21-15-6-29-12-43-17-3-2-6-2-10-5-6-17-13-34-20-51-7 17-14 35-21 52-17 7-35 14-52 21 15 7 30 12 45 18 2 1 5 2 8 4 6 17 13 34 21 51l0 55c-43 0-86 0-128 0l0-1c-7-6-14-14-21-21-37-35-73-70-108-106 42-1 86 0 128 0 0-42 0-85 0-127 41-42 82-83 123-124 1-1 3-3 5-4 1 12 0 26 0 39 0 29 0 59 0 88 42 0 86 0 128 0 15 15 30 30 46 46 27 27 55 54 82 82-42 0-85 0-128 0z"/>
|
158 |
+
<glyph glyph-name="horde" unicode="" d="M345 300c1 55 50 64 50 68 0 7-44 61-44 61 0 84-7 35-39 34-11 14-62 49-62 49 0 0-45-35-57-49-35-5-39 61-39-34 0 0-44-52-44-64 0-5 51-6 51-61-29-3-42 15-56 25 3-22 26-71 47-81 8 16 29 38 50-12 20-49 1-68-28-40-1-20 31-86 51-101 6 6 19 56 18 65-2 7-13 93-26 104-24 20-80 130 34 170 114-40 61-147 38-169-22-21-21-238-16-265 16 15 7 84 51 129-13-1-53 5-23 90 26 71 45 48 59 17 11 8 45 73 47 95-14-9-32-35-62-31z m-59 47c-5 13-33 39-33 39l-4-3c-16-21-19-17-31-37-4-5 4-8 15-26 15-24 18-45 18-45l3 4c7 8 9 22 17 36 7 13 17 25 15 32z"/>
|
159 |
+
<glyph glyph-name="etsy" unicode="" d="M56 492c-1 7 2 12 12 12 9 0 106-3 171-3 134 0 167 11 190 11 12-1 15-10 15-16 0-6-6-18-6-34 0-16 4-32 4-47 0-14-12-18-19-18-6 0-10 2-10 14-1 23 16 56-148 56-83 0-85-10-85-36 0-27 0-114 0-127 0-14 4-18 15-18 11 0 96 0 119 0 23 0 47 12 50 45 1 17 5 18 14 18 9 0 16-7 15-23-2-17-5-34-5-57 0-24 5-47 5-64 0-17-23-21-27-2-4 17-11 48-63 48-52 0-94 0-106 0-12 0-17-7-17-26 0-19 0-112 0-135 0-24 7-49 54-49 48 0 134-5 174 26 16 13 22 33 27 65 3 14 35 14 33-20-1-16-16-49-16-71 0-17 4-42-12-42-14 0-8 8-70 8-62 0-275-2-311-2-13 0-16 4-16 12 0 8 5 14 16 14 11 0 59 0 59 60 0 61 0 282 0 315 0 32-7 65-47 69-16 2-15 8-15 17z"/>
|
160 |
+
<glyph glyph-name="zapier" unicode="" d="M508 298l-149 0 106 106c-8 12-18 23-28 33-10 10-21 20-33 28l-106-106 0 149c-13 3-27 4-42 4-14 0-29-1-42-4l0-149-106 106c-12-8-23-18-33-28-10-10-20-21-28-33l106-105-149 0c0 0-4-28-4-42 0-15 1-29 4-43l149 0-106-106c16-24 37-44 61-61l105 106 0-150c14-2 28-4 42-4l1 0c14 0 29 2 42 4l0 150 106-106c12 8 23 18 33 28 10 10 20 21 28 33l-106 106 149 0c3 13 4 28 4 42 0 15-1 29-4 42m-188-42c0-19-4-37-10-54-17-6-35-10-54-10-19 0-37 4-54 10-6 17-10 35-10 54 0 19 4 37 10 54 17 6 35 10 54 10 19 0 37-4 54-10 6-17 10-35 10-54z"/>
|
161 |
+
<glyph glyph-name="google-scholar" unicode="" d="M458 455c5 0 8-2 8-4 1-3 1-6 1-10l0-172c0-4-2-7-4-10-3-3-6-4-10-4l-6 0c-4 0-7 2-10 4-3 3-4 6-4 10l0 172c0 4 0 7 0 10 1 2 3 4 8 4l0 23-75-62c1-1 1-2 2-2 0-1 1-1 1-2 3-6 6-13 8-20 1-7 2-16 2-25 0-7 0-13-1-19-1-6-3-13-5-18-3-5-5-10-8-15-3-4-6-8-9-11-3-4-7-7-10-10-3-3-7-6-10-9-3-3-6-6-9-9-3-3-5-6-8-9-2-3-4-6-5-9-1-4-1-7-1-10 0-4 0-7 2-10 1-3 3-7 7-10 3-3 6-7 10-10 3-3 7-7 12-10 4-3 9-6 13-10 4-3 9-7 13-11 4-4 8-8 12-13 4-6 7-11 10-17 3-6 5-13 6-19 2-7 3-14 3-21 0-10-1-19-4-28-2-9-6-17-11-24-5-8-11-15-17-21-7-7-14-12-21-17-9-4-17-9-25-12-9-3-17-6-27-8-8-2-17-4-27-5-9-1-18-2-27-2-5 0-11 0-17 1-5 0-11 1-17 2-5 1-11 2-17 3-6 2-12 4-17 6-6 2-12 4-17 7-5 3-10 6-14 10-5 3-9 7-12 11-4 4-7 9-10 14-3 5-5 11-7 17-1 5-2 11-2 18 0 8 1 15 3 22 2 7 5 14 10 21 4 6 9 12 15 18 5 5 12 10 19 14 6 4 13 7 21 11 7 3 16 5 26 8 10 2 20 4 31 5 11 2 24 3 37 4-6 8-10 15-13 22-3 7-5 14-5 20 0 4 1 8 2 12 1 4 2 8 4 13-3 0-6-1-10-1-3 0-6 0-9 0-15 0-27 2-39 6-12 5-23 11-32 21-10 9-17 20-22 31-5 11-7 24-7 38 0 1 0 3 0 4 0 2 0 3 0 4l-116 0 173 150 285 0-26-20 0-37z m-143-297c0 1-2 2-4 3-2 2-4 3-7 6-3 2-6 4-8 6-1 1-2 2-3 2-1 0-3 0-5 0-2 0-5 1-8 1-7 0-13-1-19-1-7-1-13-2-19-3-6-1-13-3-19-5-6-2-12-4-18-6-6-3-11-6-17-10-4-4-9-8-12-13-4-5-7-11-9-17-2-6-3-12-3-19 0-7 1-13 3-19 1-5 4-11 8-16 3-5 7-10 11-13 5-4 10-8 15-10 5-3 10-6 16-8 6-2 11-4 17-5 7-2 13-3 18-3 7-1 13-1 18-1 13 0 24 1 34 4 11 2 20 6 29 12 9 6 15 12 19 21 5 9 7 18 7 30 0 2 0 4-1 7 0 2 0 4-1 7-1 3-2 5-2 7-1 2-2 4-2 5-1 2-2 4-3 6-1 2-3 4-5 6-2 3-3 4-5 6-2 2-3 3-4 4-1 1-2 2-4 4-1 2-4 4-6 6-3 3-5 4-7 6-2-1-3 0-4 0z m-4 135c4 5 8 12 11 20 3 8 4 16 4 24 0 8-1 16-2 24-2 8-3 16-6 25-3 8-6 16-11 24-4 7-9 14-15 21-6 7-13 12-20 15-6 4-14 5-22 5-9 0-17-1-24-5-6-3-12-8-17-14-5-7-8-13-11-21-2-8-3-17-3-26 0-8 0-16 2-24 1-7 3-15 5-24 3-8 6-15 11-23 4-7 9-13 15-20 6-6 13-11 20-14 7-3 14-5 22-5 9 0 17 2 24 5 6 2 12 7 17 13z"/>
|
162 |
+
<glyph glyph-name="researchgate" unicode="" d="M336 0c11 0 22 2 29 5l0 16c-22 0-44 15-60 32-27 29-63 77-93 130 50 12 86 58 86 104 0 69-53 101-123 101-36 0-65-2-92-2-24 0-49 0-64 0l0-17 23-4c16-4 26-11 26-49l0-240c0-38-10-45-26-48l-23-4 0-19c17 1 46 2 74 2 28 0 63-1 79-2l0 18-32 4c-17 3-25 10-25 48l0 102c15-1 27-1 47-1 37-66 72-117 92-140 19-22 47-36 82-36m-177 204c-21 0-30 0-44 2l0 153c14 1 32 1 49 1 52 0 82-27 82-75 0-49-33-81-87-81m186 154c0 3-1 7-1 11-1 4-1 10-1 16 0 6-1 13-1 21 0 8 0 16 1 22 0 6 0 11 1 15 0 4 1 8 1 11 1 3 2 6 3 9 5 16 13 28 26 36 12 9 26 13 44 13 9 0 17-1 24-3 8-2 14-5 20-9 5-3 10-8 14-13 4-5 7-10 10-15 1-2 0-4-1-5l-22-9c-2-1-3 0-4 2-5 9-9 15-17 20-7 4-13 6-24 6-12 0-17-2-24-7-7-5-13-12-16-22-1-2-1-4-2-6-1-3-1-6-2-10 0-4 0-9 0-14 0-6-1-12-1-20 0-8 0-14 1-20 0-6 0-10 0-14 1-3 1-7 2-9 0-3 1-5 2-7 3-10 8-15 14-20 7-4 15-7 26-7 10 0 20 3 26 7 6 5 11 11 14 19 1 3 2 8 3 13 1 5 1 10 1 18 0 1-1 2-2 2l-36 0c-2 0-3 1-3 3l0 21c0 2 1 3 3 3l66 0c2 0 3-1 3-3l0-19c0-9 0-18-1-25-1-8-2-15-4-20-5-16-12-27-25-36-12-8-27-12-45-12-17 0-32 4-44 12-12 8-20 20-26 36-1 2-2 6-3 9"/>
|
163 |
</font></defs></svg>
|
assets/fonts/socicon.ttf
CHANGED
Binary file
|
assets/fonts/socicon.woff
CHANGED
Binary file
|
assets/js/admin/meta-boxes-group.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* global social_icons_admin_meta_boxes_group */
|
2 |
jQuery( function( $ ) {
|
3 |
|
4 |
-
// Icon inputs
|
5 |
$( '#social-icons-group-data' ).on( 'click','.sortable_icons a.insert', function() {
|
6 |
$( this ).closest( '.sortable_icons' ).find( 'tr.no-items' ).remove();
|
7 |
$( this ).closest( '.sortable_icons' ).find( 'tbody' ).append( $( this ).data( 'row' ) );
|
@@ -12,8 +12,8 @@ jQuery( function( $ ) {
|
|
12 |
return false;
|
13 |
});
|
14 |
|
15 |
-
// Social Icons ordering
|
16 |
-
|
17 |
items: 'tr',
|
18 |
cursor: 'move',
|
19 |
axis: 'y',
|
@@ -24,42 +24,31 @@ jQuery( function( $ ) {
|
|
24 |
opacity: 0.65
|
25 |
});
|
26 |
|
27 |
-
// Detect
|
28 |
$( document.body ).on( 'keyup', 'td.social_url input[type=text]', function() {
|
29 |
-
var $this = $( this ),
|
30 |
|
31 |
-
if ( url.
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
found = true;
|
37 |
-
} else if ( url.indexOf( 'last.fm' ) !== -1 ) {
|
38 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-lastfm' );
|
39 |
-
found = true;
|
40 |
-
} else if ( url.indexOf( 'youtu.be' ) !== -1 ) {
|
41 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-youtube' );
|
42 |
-
found = true;
|
43 |
-
} else if ( url.indexOf( 'play.google.com' ) !== -1 ) {
|
44 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-play' );
|
45 |
-
found = true;
|
46 |
-
} else if ( url.indexOf( 'plus.google.com' ) !== -1 ) {
|
47 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-googleplus' );
|
48 |
-
found = true;
|
49 |
-
} else if ( url.indexOf( 'feedburner.google.com' ) !== -1 ) {
|
50 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-mail' );
|
51 |
-
found = true;
|
52 |
-
} else {
|
53 |
-
$( social_icons_admin_meta_boxes_group.allowed_socicons ).each( function( ix, icon ) {
|
54 |
-
if ( url.indexOf( icon ) !== -1 ) {
|
55 |
-
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-' + icon );
|
56 |
-
found = true;
|
57 |
-
return;
|
58 |
}
|
59 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
}
|
61 |
|
62 |
-
if (
|
|
|
|
|
63 |
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort dashicons-plus' );
|
64 |
}
|
65 |
});
|
1 |
/* global social_icons_admin_meta_boxes_group */
|
2 |
jQuery( function( $ ) {
|
3 |
|
4 |
+
// Icon inputs.
|
5 |
$( '#social-icons-group-data' ).on( 'click','.sortable_icons a.insert', function() {
|
6 |
$( this ).closest( '.sortable_icons' ).find( 'tr.no-items' ).remove();
|
7 |
$( this ).closest( '.sortable_icons' ).find( 'tbody' ).append( $( this ).data( 'row' ) );
|
12 |
return false;
|
13 |
});
|
14 |
|
15 |
+
// Social Icons ordering.
|
16 |
+
$( '.sortable_icons tbody' ).sortable({
|
17 |
items: 'tr',
|
18 |
cursor: 'move',
|
19 |
axis: 'y',
|
24 |
opacity: 0.65
|
25 |
});
|
26 |
|
27 |
+
// Detect socicon from supported URL and allowed lists.
|
28 |
$( document.body ).on( 'keyup', 'td.social_url input[type=text]', function() {
|
29 |
+
var $this = $( this ), $_socicon = false, url;
|
30 |
|
31 |
+
if ( url = $this.val().toLowerCase() ) {
|
32 |
+
$.each( social_icons_admin_meta_boxes_group.supported_url_icon, function( index, icon ) {
|
33 |
+
if ( url.indexOf( index ) !== -1 ) {
|
34 |
+
$_socicon = icon;
|
35 |
+
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
});
|
38 |
+
|
39 |
+
if ( ! $_socicon ) {
|
40 |
+
$.each( social_icons_admin_meta_boxes_group.allowed_socicons, function( index, icon ) {
|
41 |
+
if ( url.indexOf( icon ) !== -1 ) {
|
42 |
+
$_socicon = icon;
|
43 |
+
return true;
|
44 |
+
}
|
45 |
+
});
|
46 |
+
}
|
47 |
}
|
48 |
|
49 |
+
if ( $_socicon ) {
|
50 |
+
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort socicon-' + $_socicon );
|
51 |
+
} else {
|
52 |
$this.parents( 'tr' ).find( '.sort' ).attr( 'class', 'sort dashicons-plus' );
|
53 |
}
|
54 |
});
|
assets/js/admin/meta-boxes-group.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(a){a("#social-icons-group-data").on("click",".sortable_icons a.insert",function(){return a(this).closest(".sortable_icons").find("tr.no-items").remove(),a(this).closest(".sortable_icons").find("tbody").append(a(this).data("row")),!1}),a("#social-icons-group-data").on("click",".sortable_icons a.delete",function(){return a(this).closest("tr").remove(),!1}),
|
1 |
+
jQuery(function(a){a("#social-icons-group-data").on("click",".sortable_icons a.insert",function(){return a(this).closest(".sortable_icons").find("tr.no-items").remove(),a(this).closest(".sortable_icons").find("tbody").append(a(this).data("row")),!1}),a("#social-icons-group-data").on("click",".sortable_icons a.delete",function(){return a(this).closest("tr").remove(),!1}),a(".sortable_icons tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td.sort",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65}),a(document.body).on("keyup","td.social_url input[type=text]",function(){var b,c=a(this),d=!1;(b=c.val().toLowerCase())&&(a.each(social_icons_admin_meta_boxes_group.supported_url_icon,function(a,c){if(b.indexOf(a)!==-1)return d=c,!0}),d||a.each(social_icons_admin_meta_boxes_group.allowed_socicons,function(a,c){if(b.indexOf(c)!==-1)return d=c,!0})),d?c.parents("tr").find(".sort").attr("class","sort socicon-"+d):c.parents("tr").find(".sort").attr("class","sort dashicons-plus")})});
|
assets/js/admin/meta-boxes.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(a){a("#titlediv").find("#title").keyup(function(b){var c=b.keyCode||b.which;
|
1 |
+
jQuery(function(a){a("#titlediv").find("#title").keyup(function(b){var c=b.keyCode||b.which;if("9"===c&&a("#social-icons-group-description").length>0)return b.stopPropagation(),a("#social-icons-group-description").focus(),!1}),a(document.body).on("si-init-tabbed-panels",function(){a("ul.si-tabs").show(),a("ul.si-tabs a").click(function(){var b=a(this).closest("div.panel-wrap");return a("ul.si-tabs li",b).removeClass("active"),a(this).parent().addClass("active"),a("div.panel",b).hide(),a(a(this).attr("href")).show(),!1}),a("div.panel-wrap").each(function(){a(this).find("ul.si-tabs li").eq(0).find("a").click()})}).trigger("si-init-tabbed-panels")});
|
assets/js/admin/widgets.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* global social_icons_admin_widgets */
|
2 |
jQuery( function ( $ ) {
|
3 |
|
4 |
-
// Hidden Options
|
5 |
$( document.body ).on( 'si-init-hidden-options', function() {
|
6 |
$( 'input.show_label' ).change( function() {
|
7 |
var icons_list = $( this ).parents( '.widget-content' ).find( '.social-icons-list' );
|
@@ -13,19 +13,19 @@ jQuery( function ( $ ) {
|
|
13 |
}).change();
|
14 |
}).trigger( 'si-init-hidden-options' );
|
15 |
|
16 |
-
// Add Social Icons
|
17 |
$( document.body ).on( 'click', '.social-icons-add-button button', function( e ) {
|
18 |
e.preventDefault();
|
19 |
|
20 |
var icons_list = $( this ).parents( '.widget-content' ).find( '.social-icons-list' );
|
21 |
|
22 |
-
// URL and Label fields
|
23 |
var url_field_id = icons_list.data( 'url-field-id' );
|
24 |
var url_field_name = icons_list.data( 'url-field-name' );
|
25 |
var label_field_id = icons_list.data( 'label-field-id' );
|
26 |
var label_field_name = icons_list.data( 'label-field-name' );
|
27 |
|
28 |
-
// URL and Label Template
|
29 |
var $tmpl = $( $.trim( $( '#tmpl-social-icons-field' ).html() ) );
|
30 |
$tmpl.find( '.social-icons-field-url' ).attr( 'id', url_field_id ).attr( 'name', url_field_name + '[]' );
|
31 |
$tmpl.find( '.social-icons-field-label' ).attr( 'id', label_field_id ).attr( 'name', label_field_name + '[]' );
|
@@ -36,56 +36,44 @@ jQuery( function ( $ ) {
|
|
36 |
$( this ).parents( '.widget-content' ).find( '.social-icons-list:last input:first-child' ).trigger( 'focus' );
|
37 |
});
|
38 |
|
39 |
-
// Detect
|
40 |
$( document.body ).on( 'keyup', '.social-icons-field-url', function() {
|
41 |
-
var $this = $( this ),
|
42 |
-
|
43 |
-
if ( url.
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
found = true;
|
49 |
-
} else if ( url.indexOf( 'last.fm' ) !== -1 ) {
|
50 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-lastfm' );
|
51 |
-
found = true;
|
52 |
-
} else if ( url.indexOf( 'youtu.be' ) !== -1 ) {
|
53 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-youtube' );
|
54 |
-
found = true;
|
55 |
-
} else if ( url.indexOf( 'play.google.com' ) !== -1 ) {
|
56 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-play' );
|
57 |
-
found = true;
|
58 |
-
} else if ( url.indexOf( 'plus.google.com' ) !== -1 ) {
|
59 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-googleplus' );
|
60 |
-
found = true;
|
61 |
-
} else if ( url.indexOf( 'feedburner.google.com' ) !== -1 ) {
|
62 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-mail' );
|
63 |
-
found = true;
|
64 |
-
} else {
|
65 |
-
$( social_icons_admin_widgets.allowed_socicons ).each( function( ix, icon ) {
|
66 |
-
if ( url.indexOf( icon ) !== -1 ) {
|
67 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-' + icon );
|
68 |
-
found = true;
|
69 |
-
return;
|
70 |
}
|
71 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
|
74 |
-
if (
|
75 |
-
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle dashicons dashicons-plus' );
|
76 |
-
$( '.social-icons-add-button' ).find( 'button' ).attr( 'disabled', 'disabled' );
|
77 |
-
} else {
|
78 |
$( '.social-icons-add-button' ).find( 'button' ).removeAttr( 'disabled' );
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
});
|
81 |
|
82 |
-
// Remove Social Icons
|
83 |
$( document.body ).on( 'click', '.social-icons-field-remove', function( e ) {
|
84 |
e.preventDefault();
|
85 |
$( this ).parents( '.social-icons-field' ).remove();
|
86 |
});
|
87 |
|
88 |
-
// Event handler for widget open button
|
89 |
$( document.body ).on( 'click', 'div.widget[id*=themegrill_social_icons] .widget-title, div.widget[id*=themegrill_social_icons] .widget-title-action', function() {
|
90 |
if ( $( this ).parents( '#available-widgets' ).length ) {
|
91 |
return;
|
@@ -94,14 +82,14 @@ jQuery( function ( $ ) {
|
|
94 |
widgetSortable( $( this ).parents( '.widget[id*=themegrill_social_icons]' ) );
|
95 |
});
|
96 |
|
97 |
-
// Event handler for widget added and updated
|
98 |
$( document ).on( 'widget-added widget-updated', function( e, widget ) {
|
99 |
if ( widget.is( '[id*=themegrill_social_icons]' ) ) {
|
100 |
e.preventDefault();
|
101 |
widgetSortable( widget );
|
102 |
}
|
103 |
|
104 |
-
// Trigger hidden options
|
105 |
$( document.body ).trigger( 'si-init-hidden-options' );
|
106 |
});
|
107 |
|
1 |
/* global social_icons_admin_widgets */
|
2 |
jQuery( function ( $ ) {
|
3 |
|
4 |
+
// Hidden Options.
|
5 |
$( document.body ).on( 'si-init-hidden-options', function() {
|
6 |
$( 'input.show_label' ).change( function() {
|
7 |
var icons_list = $( this ).parents( '.widget-content' ).find( '.social-icons-list' );
|
13 |
}).change();
|
14 |
}).trigger( 'si-init-hidden-options' );
|
15 |
|
16 |
+
// Add Social Icons.
|
17 |
$( document.body ).on( 'click', '.social-icons-add-button button', function( e ) {
|
18 |
e.preventDefault();
|
19 |
|
20 |
var icons_list = $( this ).parents( '.widget-content' ).find( '.social-icons-list' );
|
21 |
|
22 |
+
// URL and Label fields.
|
23 |
var url_field_id = icons_list.data( 'url-field-id' );
|
24 |
var url_field_name = icons_list.data( 'url-field-name' );
|
25 |
var label_field_id = icons_list.data( 'label-field-id' );
|
26 |
var label_field_name = icons_list.data( 'label-field-name' );
|
27 |
|
28 |
+
// URL and Label Template.
|
29 |
var $tmpl = $( $.trim( $( '#tmpl-social-icons-field' ).html() ) );
|
30 |
$tmpl.find( '.social-icons-field-url' ).attr( 'id', url_field_id ).attr( 'name', url_field_name + '[]' );
|
31 |
$tmpl.find( '.social-icons-field-label' ).attr( 'id', label_field_id ).attr( 'name', label_field_name + '[]' );
|
36 |
$( this ).parents( '.widget-content' ).find( '.social-icons-list:last input:first-child' ).trigger( 'focus' );
|
37 |
});
|
38 |
|
39 |
+
// Detect socicon from supported URL and allowed lists.
|
40 |
$( document.body ).on( 'keyup', '.social-icons-field-url', function() {
|
41 |
+
var $this = $( this ), $_socicon = false, url;
|
42 |
+
|
43 |
+
if ( url = $this.val().toLowerCase() ) {
|
44 |
+
$.each( social_icons_admin_widgets.supported_url_icon, function( index, icon ) {
|
45 |
+
if ( url.indexOf( index ) !== -1 ) {
|
46 |
+
$_socicon = icon;
|
47 |
+
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
49 |
});
|
50 |
+
|
51 |
+
if ( ! $_socicon ) {
|
52 |
+
$.each( social_icons_admin_widgets.allowed_socicons, function( index, icon ) {
|
53 |
+
if ( url.indexOf( icon ) !== -1 ) {
|
54 |
+
$_socicon = icon;
|
55 |
+
return true;
|
56 |
+
}
|
57 |
+
});
|
58 |
+
}
|
59 |
}
|
60 |
|
61 |
+
if ( $_socicon ) {
|
|
|
|
|
|
|
62 |
$( '.social-icons-add-button' ).find( 'button' ).removeAttr( 'disabled' );
|
63 |
+
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle socicon socicon-' + $_socicon );
|
64 |
+
} else {
|
65 |
+
$( '.social-icons-add-button' ).find( 'button' ).attr( 'disabled', 'disabled' );
|
66 |
+
$this.parents( '.social-icons-field' ).find( '.social-icons-field-handle' ).attr( 'class', 'social-icons-field-handle dashicons dashicons-plus' );
|
67 |
}
|
68 |
});
|
69 |
|
70 |
+
// Remove Social Icons.
|
71 |
$( document.body ).on( 'click', '.social-icons-field-remove', function( e ) {
|
72 |
e.preventDefault();
|
73 |
$( this ).parents( '.social-icons-field' ).remove();
|
74 |
});
|
75 |
|
76 |
+
// Event handler for widget open button.
|
77 |
$( document.body ).on( 'click', 'div.widget[id*=themegrill_social_icons] .widget-title, div.widget[id*=themegrill_social_icons] .widget-title-action', function() {
|
78 |
if ( $( this ).parents( '#available-widgets' ).length ) {
|
79 |
return;
|
82 |
widgetSortable( $( this ).parents( '.widget[id*=themegrill_social_icons]' ) );
|
83 |
});
|
84 |
|
85 |
+
// Event handler for widget added and updated.
|
86 |
$( document ).on( 'widget-added widget-updated', function( e, widget ) {
|
87 |
if ( widget.is( '[id*=themegrill_social_icons]' ) ) {
|
88 |
e.preventDefault();
|
89 |
widgetSortable( widget );
|
90 |
}
|
91 |
|
92 |
+
// Trigger hidden options.
|
93 |
$( document.body ).trigger( 'si-init-hidden-options' );
|
94 |
});
|
95 |
|
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=a(this),c
|
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")})});
|
assets/js/jquery-tiptip/jquery.tipTip.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a){a.fn.tipTip=function(b){var c={activation:"hover",keepAlive:!1,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:!1,enter:function(){},exit:function(){}},d=a.extend(c,b);if(a("#tiptip_holder").length<=0){var e=a('<div id="tiptip_holder" style="max-width:'+d.maxWidth+';"></div>'),f=a('<div id="tiptip_content"></div>'),g=a('<div id="tiptip_arrow"></div>');a("body").append(e.html(f).prepend(g.html('<div id="tiptip_arrow_inner"></div>')))}else var e=a("#tiptip_holder"),f=a("#tiptip_content"),g=a("#tiptip_arrow");return this.each(function(){function b(){d.enter.call(this),f.html(i),e.hide().removeAttr("class").css("margin","0"),g.removeAttr("style");var b=parseInt(h.offset().top),c=parseInt(h.offset().left),k=parseInt(h.outerWidth()),l=parseInt(h.outerHeight()),m=e.outerWidth(),n=e.outerHeight(),o=Math.round((k-m)/2),p=Math.round((l-n)/2),q=Math.round(c+o),r=Math.round(b+l+d.edgeOffset),s="",t="",u=Math.round(m-12)/2;"bottom"==d.defaultPosition?s="_bottom":"top"==d.defaultPosition?s="_top":"left"==d.defaultPosition?s="_left":"right"==d.defaultPosition&&(s="_right");var v=o+c<parseInt(a(window).scrollLeft()),w=m+c>parseInt(a(window).width());v&&0
|
1 |
+
!function(a){a.fn.tipTip=function(b){var c={activation:"hover",keepAlive:!1,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:!1,enter:function(){},exit:function(){}},d=a.extend(c,b);if(a("#tiptip_holder").length<=0){var e=a('<div id="tiptip_holder" style="max-width:'+d.maxWidth+';"></div>'),f=a('<div id="tiptip_content"></div>'),g=a('<div id="tiptip_arrow"></div>');a("body").append(e.html(f).prepend(g.html('<div id="tiptip_arrow_inner"></div>')))}else var e=a("#tiptip_holder"),f=a("#tiptip_content"),g=a("#tiptip_arrow");return this.each(function(){function b(){d.enter.call(this),f.html(i),e.hide().removeAttr("class").css("margin","0"),g.removeAttr("style");var b=parseInt(h.offset().top),c=parseInt(h.offset().left),k=parseInt(h.outerWidth()),l=parseInt(h.outerHeight()),m=e.outerWidth(),n=e.outerHeight(),o=Math.round((k-m)/2),p=Math.round((l-n)/2),q=Math.round(c+o),r=Math.round(b+l+d.edgeOffset),s="",t="",u=Math.round(m-12)/2;"bottom"==d.defaultPosition?s="_bottom":"top"==d.defaultPosition?s="_top":"left"==d.defaultPosition?s="_left":"right"==d.defaultPosition&&(s="_right");var v=o+c<parseInt(a(window).scrollLeft()),w=m+c>parseInt(a(window).width());v&&o<0||"_right"==s&&!w||"_left"==s&&c<m+d.edgeOffset+5?(s="_right",t=Math.round(n-13)/2,u=-12,q=Math.round(c+k+d.edgeOffset),r=Math.round(b+p)):(w&&o<0||"_left"==s&&!v)&&(s="_left",t=Math.round(n-13)/2,u=Math.round(m),q=Math.round(c-(m+d.edgeOffset+5)),r=Math.round(b+p));var x=b+l+d.edgeOffset+n+8>parseInt(a(window).height()+a(window).scrollTop()),y=b+l-(d.edgeOffset+n+8)<0;x||"_bottom"==s&&x||"_top"==s&&!y?("_top"==s||"_bottom"==s?s="_top":s+="_top",t=n,r=Math.round(b-(n+5+d.edgeOffset))):(y|("_top"==s&&y)||"_bottom"==s&&!x)&&("_top"==s||"_bottom"==s?s="_bottom":s+="_bottom",t=-12,r=Math.round(b+l+d.edgeOffset)),"_right_top"==s||"_left_top"==s?r+=5:"_right_bottom"!=s&&"_left_bottom"!=s||(r-=5),"_left_top"!=s&&"_left_bottom"!=s||(q+=5),g.css({"margin-left":u+"px","margin-top":t+"px"}),e.css({"margin-left":q+"px","margin-top":r+"px"}).attr("class","tip"+s),j&&clearTimeout(j),j=setTimeout(function(){e.stop(!0,!0).fadeIn(d.fadeIn)},d.delay)}function c(){d.exit.call(this),j&&clearTimeout(j),e.fadeOut(d.fadeOut)}var h=a(this);if(d.content)var i=d.content;else var i=h.attr(d.attribute);if(""!=i){d.content||h.removeAttr(d.attribute);var j=!1;"hover"==d.activation?(h.hover(function(){b()},function(){d.keepAlive||c()}),d.keepAlive&&e.hover(function(){},function(){c()})):"focus"==d.activation?h.focus(function(){b()}).blur(function(){c()}):"click"==d.activation&&(h.click(function(){return b(),!1}).hover(function(){},function(){d.keepAlive||c()}),d.keepAlive&&e.hover(function(){},function(){c()}))}})}}(jQuery);
|
includes/admin/class-si-admin-assets.php
CHANGED
@@ -38,12 +38,12 @@ class SI_Admin_Assets {
|
|
38 |
$screen_id = $screen ? $screen->id : '';
|
39 |
$jquery_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.9.2';
|
40 |
|
41 |
-
// Register admin styles
|
42 |
wp_register_style( 'social-icons-admin', SI()->plugin_url() . '/assets/css/admin.css', array(), SI_VERSION );
|
43 |
wp_register_style( 'social-icons-admin-widgets', SI()->plugin_url() . '/assets/css/widgets.css', array(), SI_VERSION );
|
44 |
wp_register_style( 'jquery-ui-style', '//code.jquery.com/ui/' . $jquery_version . '/themes/smoothness/jquery-ui.css', array(), $jquery_version );
|
45 |
|
46 |
-
// Admin styles for SI pages only
|
47 |
if ( in_array( $screen_id, si_get_screen_ids() ) ) {
|
48 |
wp_enqueue_style( 'social-icons-admin' );
|
49 |
wp_enqueue_style( 'jquery-ui-style' );
|
@@ -62,12 +62,18 @@ class SI_Admin_Assets {
|
|
62 |
$screen_id = $screen ? $screen->id : '';
|
63 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
64 |
|
65 |
-
// Register Scripts
|
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 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
if ( in_array( $screen_id, si_get_screen_ids() ) ) {
|
72 |
wp_enqueue_script( 'social-icons-admin' );
|
73 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
@@ -80,28 +86,18 @@ class SI_Admin_Assets {
|
|
80 |
wp_localize_script( 'social-icons-admin', 'social_icons_admin', $params );
|
81 |
}
|
82 |
|
83 |
-
// Meta boxes
|
84 |
if ( in_array( $screen_id, array( 'social_icon', 'edit-social_icon' ) ) ) {
|
85 |
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 );
|
|
|
86 |
wp_enqueue_script( 'si-admin-group-meta-boxes' );
|
87 |
-
|
88 |
-
$params = array(
|
89 |
-
'allowed_socicons' => si_get_allowed_socicons()
|
90 |
-
);
|
91 |
-
|
92 |
-
wp_localize_script( 'si-admin-group-meta-boxes', 'social_icons_admin_meta_boxes_group', $params );
|
93 |
}
|
94 |
|
95 |
-
// Widgets Specific
|
96 |
if ( in_array( $screen_id, array( 'widgets', 'customize' ) ) ) {
|
97 |
wp_register_script( 'si-admin-widgets', SI()->plugin_url() . '/assets/js/admin/widgets' . $suffix . '.js', array( 'jquery' ), SI_VERSION );
|
|
|
98 |
wp_enqueue_script( 'si-admin-widgets' );
|
99 |
-
|
100 |
-
$params = array(
|
101 |
-
'allowed_socicons' => si_get_allowed_socicons()
|
102 |
-
);
|
103 |
-
|
104 |
-
wp_localize_script( 'si-admin-widgets', 'social_icons_admin_widgets', $params );
|
105 |
}
|
106 |
}
|
107 |
}
|
38 |
$screen_id = $screen ? $screen->id : '';
|
39 |
$jquery_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.9.2';
|
40 |
|
41 |
+
// Register admin styles.
|
42 |
wp_register_style( 'social-icons-admin', SI()->plugin_url() . '/assets/css/admin.css', array(), SI_VERSION );
|
43 |
wp_register_style( 'social-icons-admin-widgets', SI()->plugin_url() . '/assets/css/widgets.css', array(), SI_VERSION );
|
44 |
wp_register_style( 'jquery-ui-style', '//code.jquery.com/ui/' . $jquery_version . '/themes/smoothness/jquery-ui.css', array(), $jquery_version );
|
45 |
|
46 |
+
// Admin styles for SI pages only.
|
47 |
if ( in_array( $screen_id, si_get_screen_ids() ) ) {
|
48 |
wp_enqueue_style( 'social-icons-admin' );
|
49 |
wp_enqueue_style( 'jquery-ui-style' );
|
62 |
$screen_id = $screen ? $screen->id : '';
|
63 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
64 |
|
65 |
+
// Register Scripts.
|
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(
|
72 |
+
'allowed_socicons' => si_get_allowed_socicons(),
|
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' );
|
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 |
}
|
includes/admin/class-si-admin.php
CHANGED
@@ -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★★★★★%s rating. A huge
|
57 |
si_enqueue_js( "
|
58 |
jQuery( 'a.si-rating-link' ).click( function() {
|
59 |
jQuery.post( '" . SI()->ajax_url() . "', { action: 'social_icons_rated' } );
|
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★★★★★%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' } );
|
includes/admin/functions-si-admin.php
CHANGED
@@ -30,20 +30,11 @@ function si_get_social_icon_name( $url ) {
|
|
30 |
$icon = '';
|
31 |
|
32 |
if ( $url = strtolower( $url ) ) {
|
33 |
-
|
34 |
-
$
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
$icon = 'lastfm';
|
39 |
-
} elseif ( strstr( $url, 'youtu.be' ) ) {
|
40 |
-
$icon = 'youtube';
|
41 |
-
} elseif ( strstr( $url, 'play.google.com' ) ) {
|
42 |
-
$icon = 'play';
|
43 |
-
} elseif ( strstr( $url, 'plus.google.com' ) ) {
|
44 |
-
$icon = 'googleplus';
|
45 |
-
} elseif ( strstr( $url, 'feedburner.google.com' ) ) {
|
46 |
-
$icon = 'mail';
|
47 |
}
|
48 |
|
49 |
if ( ! $icon ) {
|
30 |
$icon = '';
|
31 |
|
32 |
if ( $url = strtolower( $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 |
|
40 |
if ( ! $icon ) {
|
includes/class-si-install.php
CHANGED
@@ -31,7 +31,7 @@ class SI_Install {
|
|
31 |
* @param array $actions
|
32 |
* @return array
|
33 |
*/
|
34 |
-
public function plugin_action_links( $actions ) {
|
35 |
$new_actions = array(
|
36 |
'settings' => '<a href="' . admin_url( 'edit.php?post_type=social_icon' ) . '" title="' . esc_attr( __( 'View Social Icons Settings', 'social-icons' ) ) . '">' . __( 'Settings', 'social-icons' ) . '</a>',
|
37 |
);
|
@@ -45,7 +45,7 @@ class SI_Install {
|
|
45 |
* @param string $plugin_file
|
46 |
* @return array
|
47 |
*/
|
48 |
-
public 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>',
|
31 |
* @param array $actions
|
32 |
* @return array
|
33 |
*/
|
34 |
+
public static function plugin_action_links( $actions ) {
|
35 |
$new_actions = array(
|
36 |
'settings' => '<a href="' . admin_url( 'edit.php?post_type=social_icon' ) . '" title="' . esc_attr( __( 'View Social Icons Settings', 'social-icons' ) ) . '">' . __( 'Settings', 'social-icons' ) . '</a>',
|
37 |
);
|
45 |
* @param string $plugin_file
|
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>',
|
includes/class-si-shortcodes.php
CHANGED
@@ -45,7 +45,7 @@ class SI_Shortcodes {
|
|
45 |
|
46 |
$atts = shortcode_atts( array(
|
47 |
'id' => ''
|
48 |
-
), $atts );
|
49 |
|
50 |
$group_id = absint( $atts['id'] );
|
51 |
|
45 |
|
46 |
$atts = shortcode_atts( array(
|
47 |
'id' => ''
|
48 |
+
), $atts, 'social_icons_group' );
|
49 |
|
50 |
$group_id = absint( $atts['id'] );
|
51 |
|
includes/functions-si-core.php
CHANGED
@@ -87,7 +87,28 @@ function si_print_js() {
|
|
87 |
* @return array
|
88 |
*/
|
89 |
function si_get_allowed_socicons() {
|
90 |
-
return apply_filters( 'social_icons_allowed_socicon', array( 'modelmayhem', 'mixcloud', 'drupal', 'swarm', 'istock', 'yammer', 'ello', 'stackoverflow', 'persona', 'triplej', 'houzz', 'rss', 'paypal', 'odnoklassniki', 'airbnb', 'periscope', 'outlook', 'coderwall', 'tripadvisor', 'appnet', 'goodreads', 'tripit', 'lanyrd', 'slideshare', 'buffer', 'disqus', 'vkontakte', 'whatsapp', 'patreon', 'storehouse', 'pocket', 'mail', 'blogger', 'technorati', 'reddit', 'dribbble', 'stumbleupon', 'digg', 'envato', 'behance', 'delicious', 'deviantart', 'forrst', 'play', 'zerply', 'wikipedia', 'apple', 'flattr', 'github', 'renren', 'friendfeed', 'newsvine', 'identica', 'bebo', 'zynga', 'steam', 'xbox', 'windows', 'qq', 'douban', 'meetup', 'playstation', 'android', 'snapchat', 'twitter', 'facebook', 'googleplus', 'pinterest', 'foursquare', 'yahoo', 'skype', 'yelp', 'feedburner', 'linkedin', 'viadeo', 'xing', 'myspace', 'soundcloud', 'spotify', 'grooveshark', 'lastfm', 'youtube', 'vimeo', 'dailymotion', 'vine', 'flickr', '500px', 'instagram', 'wordpress', 'tumblr', 'twitch', '8tracks', 'amazon', 'icq', 'smugmug', 'ravelry', 'weibo', 'baidu', 'angellist', 'ebay', 'imdb', 'stayfriends', 'residentadvisor', 'google', 'yandex', 'sharethis', 'bandcamp', 'itunes', 'deezer', 'medium', 'telegram', 'openid', 'amplement', 'viber', 'zomato', 'quora', 'draugiem', 'endomodo', 'filmweb', 'stackexchange', 'wykop', 'teamspeak', 'teamviewer', 'ventrilo', 'younow', 'raidcall', 'mumble', 'bebee', 'hitbox', 'reverbnation', 'formulr' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
/**
|
@@ -99,7 +120,7 @@ function si_get_allowed_socicons() {
|
|
99 |
function si_post_content_has_shortcode( $tag = '' ) {
|
100 |
global $post;
|
101 |
|
102 |
-
return is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, $tag );
|
103 |
}
|
104 |
|
105 |
/**
|
87 |
* @return array
|
88 |
*/
|
89 |
function si_get_allowed_socicons() {
|
90 |
+
return apply_filters( 'social_icons_allowed_socicon', array( 'modelmayhem', 'mixcloud', 'drupal', 'swarm', 'istock', 'yammer', 'ello', 'stackoverflow', 'persona', 'triplej', 'houzz', 'rss', 'paypal', 'odnoklassniki', 'airbnb', 'periscope', 'outlook', 'coderwall', 'tripadvisor', 'appnet', 'goodreads', 'tripit', 'lanyrd', 'slideshare', 'buffer', 'disqus', 'vkontakte', 'whatsapp', 'patreon', 'storehouse', 'pocket', 'mail', 'blogger', 'technorati', 'reddit', 'dribbble', 'stumbleupon', 'digg', 'envato', 'behance', 'delicious', 'deviantart', 'forrst', 'play', 'zerply', 'wikipedia', 'apple', 'flattr', 'github', 'renren', 'friendfeed', 'newsvine', 'identica', 'bebo', 'zynga', 'steam', 'xbox', 'windows', 'qq', 'douban', 'meetup', 'playstation', 'android', 'snapchat', 'twitter', 'facebook', 'googleplus', 'pinterest', 'foursquare', 'yahoo', 'skype', 'yelp', 'feedburner', 'linkedin', 'viadeo', 'xing', 'myspace', 'soundcloud', 'spotify', 'grooveshark', 'lastfm', 'youtube', 'vimeo', 'dailymotion', 'vine', 'flickr', '500px', 'instagram', 'wordpress', 'tumblr', 'twitch', '8tracks', 'amazon', 'icq', 'smugmug', 'ravelry', 'weibo', 'baidu', 'angellist', 'ebay', 'imdb', 'stayfriends', 'residentadvisor', 'google', 'yandex', 'sharethis', 'bandcamp', 'itunes', 'deezer', 'medium', 'telegram', 'openid', 'amplement', 'viber', 'zomato', 'quora', 'draugiem', 'endomodo', 'filmweb', 'stackexchange', 'wykop', 'teamspeak', 'teamviewer', 'ventrilo', 'younow', 'raidcall', 'mumble', 'bebee', 'hitbox', 'reverbnation', 'formulr', 'battlenet', 'chrome', 'diablo', 'discord', 'issuu', 'macos', 'firefox', 'heroes', 'hearthstone', 'overwatch', 'opera', 'warcraft', 'starcraft', 'keybase', 'alliance', 'livejournal', 'googlephotos', 'horde', 'etsy', 'zapier', 'google-scholar', 'researchgate' ) );
|
91 |
+
}
|
92 |
+
|
93 |
+
/**
|
94 |
+
* Get the icon from supported URL lists.
|
95 |
+
* @return array
|
96 |
+
*/
|
97 |
+
function si_get_supported_url_icon() {
|
98 |
+
return apply_filters( 'social_icons_get_supported_url_icon', array(
|
99 |
+
'feed' => 'rss',
|
100 |
+
'ok.ru' => 'odnoklassniki',
|
101 |
+
'vk.com' => 'vkontakte',
|
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',
|
108 |
+
'chrome.google.com' => 'chrome',
|
109 |
+
'scholar.google.com' => 'google-scholar',
|
110 |
+
'feedburner.google.com' => 'mail',
|
111 |
+
) );
|
112 |
}
|
113 |
|
114 |
/**
|
120 |
function si_post_content_has_shortcode( $tag = '' ) {
|
121 |
global $post;
|
122 |
|
123 |
+
return is_singular() && is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, $tag );
|
124 |
}
|
125 |
|
126 |
/**
|
readme.txt
CHANGED
@@ -2,10 +2,10 @@
|
|
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 |
-
Stable tag: 1.4
|
7 |
License: GPLv3
|
8 |
-
License URI:
|
9 |
|
10 |
Social Icons provides you with an easy way to display various popular social icons via widgets and shortcode
|
11 |
|
@@ -52,6 +52,13 @@ Yes you can! Join in on our [GitHub repository](https://github.com/themegrill/so
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
= 1.4 - 20/05/2016 =
|
56 |
* Feature - Pretty Support for shortcode option.
|
57 |
* Fix - Undefinded index for key on widget save.
|
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 |
|
10 |
Social Icons provides you with an easy way to display various popular social icons via widgets and shortcode
|
11 |
|
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.
|
58 |
+
* Fix - Non-static method should not be called statically.
|
59 |
+
* Tweak - Updated socicon to `v3.0.4` for new icon sets support.
|
60 |
+
* Refactor - Detect socicon from supported URL and allowed lists.
|
61 |
+
|
62 |
= 1.4 - 20/05/2016 =
|
63 |
* Feature - Pretty Support for shortcode option.
|
64 |
* Fix - Undefinded index for key on widget save.
|
social-icons.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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
|
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.
|
33 |
|
34 |
/**
|
35 |
* Instance of this class.
|
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 |
* Plugin version.
|
30 |
* @var string
|
31 |
*/
|
32 |
+
public $version = '1.4.1';
|
33 |
|
34 |
/**
|
35 |
* Instance of this class.
|
uninstall.php
CHANGED
@@ -10,11 +10,11 @@
|
|
10 |
* @version 1.4.0
|
11 |
*/
|
12 |
|
13 |
-
if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
14 |
exit;
|
15 |
}
|
16 |
|
17 |
-
global $wpdb
|
18 |
|
19 |
$uninstall_data = apply_filters( 'social_icons_uninstall_data', true );
|
20 |
|
10 |
* @version 1.4.0
|
11 |
*/
|
12 |
|
13 |
+
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
14 |
exit;
|
15 |
}
|
16 |
|
17 |
+
global $wpdb;
|
18 |
|
19 |
$uninstall_data = apply_filters( 'social_icons_uninstall_data', true );
|
20 |
|