sexy_bookmarks 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/Gemfile +12 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +202 -0
  4. data/Rakefile +14 -0
  5. data/lib/sexy_bookmarks.rb +6 -68
  6. data/lib/sexy_bookmarks/engine.rb +7 -0
  7. data/lib/sexy_bookmarks/exceptions.rb +5 -0
  8. data/lib/sexy_bookmarks/fixtures/socials.yml +328 -0
  9. data/lib/sexy_bookmarks/macros_helper.rb +67 -0
  10. data/lib/sexy_bookmarks/version.rb +3 -0
  11. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/custom-fugue-sprite.png +0 -0
  12. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/error-delete.jpg +0 -0
  13. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/flo-head.jpg +0 -0
  14. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/green-grad.png +0 -0
  15. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/information-delete.jpg +0 -0
  16. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/red-grad.png +0 -0
  17. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-enjoy.png +0 -0
  18. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-german.png +0 -0
  19. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-knowledge.png +0 -0
  20. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-love-hearts.png +0 -0
  21. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-wealth.png +0 -0
  22. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shareaholic-220.png +0 -0
  23. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-caring-hearts.png +0 -0
  24. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-caring.png +0 -0
  25. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-shr.png +0 -0
  26. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shr-sprite.png +0 -0
  27. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shrsb-logo.png +0 -0
  28. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/success-delete.jpg +0 -0
  29. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/warning-big.png +0 -0
  30. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/warning-delete.jpg +0 -0
  31. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/white-pix.jpg +0 -0
  32. data/vendor/assets/stylesheets/jquery.sexy_bookmarks.scss.erb +830 -0
  33. data/vendor/assets/stylesheets/sexy_bookmarks.css +3 -0
  34. metadata +151 -51
  35. data/README.rdoc +0 -76
  36. data/init.rb +0 -2
  37. data/lib/fixtures/socials.yml +0 -246
  38. data/lib/sexy_bookmarks_macros_helper.rb +0 -58
  39. data/lib/sexybookmarks/assets/stylesheets/sexybookmarks/style.css +0 -1
  40. data/sexy_bookmarks.gemspec +0 -17
  41. data/test/sexy_bookmarks_test.rb +0 -8
  42. data/test/test_helper.rb +0 -3
@@ -0,0 +1,67 @@
1
+ module SexyBookmarks
2
+ FIXTURES = YAML.load_file( File.join File.dirname( __FILE__ ), 'fixtures', 'socials.yml' )
3
+ ADDITIONAL_KEYS = {
4
+ :site_name => /SITE_NAME/,
5
+ :twitt_cat => /TWITT_CAT/,
6
+ :default_tags => /DEFAULT_TAGS/,
7
+ :yahooteaser => /YAHOOTEASER/,
8
+ :yahoocategory => /YAHOOCATEGORY/,
9
+ :yahoomediatype => /YAHOOMEDIATYPE/,
10
+ :image => /IMAGE/,
11
+ }
12
+
13
+ module MacrosHelper
14
+ def available_social_networks
15
+ @available_social_networks ||= ::HashWithIndifferentAccess.new( FIXTURES )
16
+ end
17
+
18
+ def show_sexy_bookmarks( content, socials = nil, per_row = 8 )
19
+ content_keys = content.keys
20
+ raise SexyBookmarks::Exceptions::NotEnoughInfo unless content_keys.include?(:title) && content_keys.include?(:permalink) && content_keys.include?(:post_summary)
21
+
22
+ socials = socials.present? ? socials.map(&:to_s) : available_social_networks.keys
23
+ content[:escaped_permalink] = CGI.escape content[:permalink]
24
+
25
+ list_items = socials.map do |social|
26
+ link_url = available_social_networks[social][:image_url] unless content[:image].blank?
27
+ link_url ||= available_social_networks[social][:url]
28
+
29
+ link_url.gsub! /SHORT_TITLE|TITLE/, content[:title]
30
+ link_url.gsub! /ESCAPED_PERMALINK/, content[:escaped_permalink]
31
+ link_url.gsub! /FETCH_URL|PERMALINK/, content[:permalink]
32
+ link_url.gsub! /POST_SUMMARY|SEXY_TEASER/, content[:post_summary]
33
+
34
+ content.except( :title, :escaped_permalink, :permalink, :post_summary ).keys { |additional_key, expr| link_url.gsub! expr, additional_key }
35
+
36
+ link_options = {
37
+ :href => link_url,
38
+ :rel => :nofollow,
39
+ :title => available_social_networks[social][:message],
40
+ :class => :external
41
+ }
42
+
43
+ link = content_tag( 'a', available_social_networks[social]['message'], link_options )
44
+ content_tag( 'li', link, :class => 'shr-' + social )
45
+ end.join('')
46
+
47
+ unordered_list = content_tag( 'ul', list_items.html_safe, :class => 'socials' )
48
+ content_tag( 'div', unordered_list.html_safe, { :class => 'shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring', :id => 'sexybookmarks' } ) + reveal_social_list( socials.count, per_row )
49
+ end
50
+
51
+ def reveal_social_list(total, per_row)
52
+ rows = ( total / Float(per_row ) % 2 == 0 ) ? total / per_row : ( total / per_row ) + 1
53
+ javascript = %{
54
+ $(function() {
55
+ $(".socials").hover(function(){
56
+ $("#sexybookmarks").delay(500).animate({ height: "#{ rows * 32 }px" }, 750);
57
+ },
58
+ function(){
59
+ $("#sexybookmarks").animate({ height: "32px"}, 750);
60
+ });
61
+ });
62
+ }
63
+
64
+ content_tag('script', javascript.html_safe, :type => 'text/javascript')
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,3 @@
1
+ module SexyBookmarks
2
+ VERSION = '0.2.0'
3
+ end
@@ -0,0 +1,830 @@
1
+ div.shr-bookmarks-expand {
2
+ height:32px;
3
+ overflow:hidden;
4
+ }
5
+
6
+ div.shr-bookmarks-bg-shr {
7
+ padding:28px 0 0 10px !important;
8
+ background:transparent url(<%= asset_path 'sharing-shr.png' %>) no-repeat !important;
9
+ }
10
+
11
+ div.shr-bookmarks-bg-caring {
12
+ padding:26px 0 0 10px !important;
13
+ background:transparent url(<%= asset_path 'sharing-caring-hearts.png' %>) no-repeat !important;
14
+ }
15
+
16
+ div.shr-bookmarks-bg-caring-old {
17
+ padding:26px 0 0 10px !important;
18
+ background:transparent url(<%= asset_path 'sharing-caring.png' %>) no-repeat !important;
19
+ }
20
+
21
+ div.shr-bookmarks-bg-love {
22
+ padding:26px 0 0 10px !important;
23
+ background:transparent url(<%= asset_path 'share-love-hearts.png' %>) no-repeat !important;
24
+ }
25
+
26
+ div.shr-bookmarks-bg-wealth {
27
+ margin-left:15px !important;
28
+ padding:35px 0 0 20px !important;
29
+ background:transparent url(<%= asset_path 'share-wealth.png' %>) no-repeat !important;
30
+ }
31
+
32
+ div.shr-bookmarks-bg-enjoy {
33
+ padding:26px 0 0 10px !important;
34
+ background:transparent url(<%= asset_path 'share-enjoy.png' %>) no-repeat !important;
35
+ }
36
+
37
+ div.shr-bookmarks-bg-german {
38
+ padding:35px 0 0 20px !important;
39
+ background:transparent url(<%= asset_path 'share-german.png' %>) no-repeat !important;
40
+ }
41
+
42
+ div.shr-bookmarks-bg-knowledge {
43
+ padding:35px 0 0 10px !important;
44
+ background:transparent url(<%= asset_path 'share-knowledge.png' %>) no-repeat !important;
45
+ }
46
+
47
+ div.shr-bookmarks {
48
+ margin:20px 0;
49
+ clear:both !important;
50
+
51
+ ul.socials {
52
+ width:100% !important;
53
+ margin:0 !important;
54
+ padding:0 !important;
55
+ float:left !important;
56
+ background:transparent none !important;
57
+ border:0 none !important;
58
+ outline:0 none !important;
59
+
60
+ li {
61
+ background-image:url(<%= asset_path 'shr-sprite.png' %>) !important;
62
+ background-repeat:no-repeat !important;
63
+ display:inline !important;
64
+ float:left !important;
65
+ list-style-type:none !important;
66
+ padding:0 !important;
67
+ height:29px !important;
68
+ width:60px !important;
69
+ cursor:pointer !important;
70
+ margin:3px 0 0 !important;
71
+ background-color:transparent !important;
72
+ border:0 none !important;
73
+ outline:0 none !important;
74
+ clear:none !important;
75
+
76
+ &:before, &:after, a:before, a:after {
77
+ content: '' !important;
78
+ }
79
+ }
80
+ }
81
+ }
82
+
83
+ div.shr-bookmarks ul.socials a, div.shr-bookmarks ul.socials a:hover {
84
+ display:block !important;
85
+ width:60px !important;
86
+ height:29px !important;
87
+ text-indent:-9999px !important;
88
+ background-color:transparent !important;
89
+ text-decoration:none !important;
90
+ border:0 none !important;
91
+ margin:0 !important;
92
+ padding:0 !important;
93
+ }
94
+
95
+ div.shr-bookmarks ul.socials a:hover, div.shr-bookmarks ul.socials li:hover {
96
+ background-color:transparent !important;
97
+ border:0 none !important;
98
+ outline:0 none !important;
99
+ }
100
+
101
+ li.shr-newsvine {
102
+ background-position:left bottom !important;
103
+ }
104
+
105
+ li.shr-newsvine:hover {
106
+ background-position:left top !important;
107
+ }
108
+
109
+ li.shr-linkedin {
110
+ background-position:-70px bottom !important;
111
+ }
112
+
113
+ li.shr-linkedin:hover {
114
+ background-position:-70px top !important;
115
+ }
116
+
117
+ li.shr-googlebookmarks {
118
+ background-position:-140px bottom !important;
119
+ }
120
+
121
+ li.shr-googlebookmarks:hover {
122
+ background-position:-140px top !important;
123
+ }
124
+
125
+ li.shr-googlereader {
126
+ background-position:-210px bottom !important;
127
+ }
128
+
129
+ li.shr-googlereader:hover {
130
+ background-position:-210px top !important;
131
+ }
132
+
133
+ li.shr-scriptstyle {
134
+ background-position:-280px bottom !important;
135
+ }
136
+
137
+ li.shr-scriptstyle:hover {
138
+ background-position:-280px top !important;
139
+ }
140
+
141
+ li.shr-mail {
142
+ background-position:-350px bottom !important;
143
+ }
144
+
145
+ li.shr-mail:hover {
146
+ background-position:-350px top !important;
147
+ }
148
+
149
+ li.shr-comfeed {
150
+ background-position:-420px bottom !important;
151
+ }
152
+
153
+ li.shr-comfeed:hover {
154
+ background-position:-420px top !important;
155
+ }
156
+
157
+ li.shr-twitter {
158
+ background-position:-490px bottom !important;
159
+ }
160
+
161
+ li.shr-twitter:hover {
162
+ background-position:-490px top !important;
163
+ }
164
+
165
+ li.shr-technorati {
166
+ background-position:-560px bottom !important;
167
+ }
168
+
169
+ li.shr-technorati:hover {
170
+ background-position:-560px top !important;
171
+ }
172
+
173
+ li.shr-stumbleupon {
174
+ background-position:-630px bottom !important;
175
+ }
176
+
177
+ li.shr-stumbleupon:hover {
178
+ background-position:-630px top !important;
179
+ }
180
+
181
+ li.shr-reddit {
182
+ background-position:-700px bottom !important;
183
+ }
184
+
185
+ li.shr-reddit:hover {
186
+ background-position:-700px top !important;
187
+ }
188
+
189
+ li.shr-myspace {
190
+ background-position:-770px bottom !important;
191
+ }
192
+
193
+ li.shr-myspace:hover {
194
+ background-position:-770px top !important;
195
+ }
196
+
197
+ li.shr-mixx {
198
+ background-position:-840px bottom !important;
199
+ }
200
+
201
+ li.shr-mixx:hover {
202
+ background-position:-840px top !important;
203
+ }
204
+
205
+ li.shr-diigo {
206
+ background-position:-910px bottom !important;
207
+ }
208
+
209
+ li.shr-diigo:hover {
210
+ background-position:-910px top !important;
211
+ }
212
+
213
+ li.shr-digg {
214
+ background-position:-980px bottom !important;
215
+ }
216
+
217
+ li.shr-digg:hover {
218
+ background-position:-980px top !important;
219
+ }
220
+
221
+ li.shr-designfloat {
222
+ background-position:-1050px bottom !important;
223
+ }
224
+
225
+ li.shr-designfloat:hover {
226
+ background-position:-1050px top !important;
227
+ }
228
+
229
+ li.shr-yahoobuzz {
230
+ background-position:-1120px bottom !important;
231
+ }
232
+
233
+ li.shr-yahoobuzz:hover {
234
+ background-position:-1120px top !important;
235
+ }
236
+
237
+ li.shr-delicious {
238
+ background-position:-1190px bottom !important;
239
+ }
240
+
241
+ li.shr-delicious:hover {
242
+ background-position:-1190px top !important;
243
+ }
244
+
245
+ li.shr-blinklist {
246
+ background-position:-1260px bottom !important;
247
+ }
248
+
249
+ li.shr-blinklist:hover {
250
+ background-position:-1260px top !important;
251
+ }
252
+
253
+ li.shr-facebook {
254
+ background-position:-1330px bottom !important;
255
+ }
256
+
257
+ li.shr-facebook:hover {
258
+ background-position:-1330px top !important;
259
+ }
260
+
261
+ li.shr-misterwong {
262
+ background-position:-1400px bottom !important;
263
+ }
264
+
265
+ li.shr-misterwong:hover {
266
+ background-position:-1400px top !important;
267
+ }
268
+
269
+ li.shr-izeby {
270
+ background-position:-1470px bottom !important;
271
+ }
272
+
273
+ li.shr-izeby:hover {
274
+ background-position:-1470px top !important;
275
+ }
276
+
277
+ li.shr-twittley {
278
+ background-position:-1540px bottom !important;
279
+ }
280
+
281
+ li.shr-twittley:hover {
282
+ background-position:-1540px top !important;
283
+ }
284
+
285
+ li.shr-tipd {
286
+ background-position:-1610px bottom !important;
287
+ }
288
+
289
+ li.shr-tipd:hover {
290
+ background-position:-1610px top !important;
291
+ }
292
+
293
+ li.shr-pfbuzz {
294
+ background-position:-1680px bottom !important;
295
+ }
296
+
297
+ li.shr-pfbuzz:hover {
298
+ background-position:-1680px top !important;
299
+ }
300
+
301
+ li.shr-friendfeed {
302
+ background-position:-1750px bottom !important;
303
+ }
304
+
305
+ li.shr-friendfeed:hover {
306
+ background-position:-1750px top !important;
307
+ }
308
+
309
+ li.shr-blogmarks {
310
+ background-position:-1820px bottom !important;
311
+ }
312
+
313
+ li.shr-blogmarks:hover {
314
+ background-position:-1820px top !important;
315
+ }
316
+
317
+ li.shr-fwisp {
318
+ background-position:-1890px bottom !important;
319
+ }
320
+
321
+ li.shr-fwisp:hover {
322
+ background-position:-1890px top !important;
323
+ }
324
+
325
+ li.shr-yahoomail {
326
+ background-position:-1960px bottom !important;
327
+ }
328
+
329
+ li.shr-yahoomail:hover {
330
+ background-position:-1960px top !important;
331
+ }
332
+
333
+ li.shr-bobrdobr {
334
+ background-position:-2030px bottom !important;
335
+ }
336
+
337
+ li.shr-bobrdobr:hover {
338
+ background-position:-2030px top !important;
339
+ }
340
+
341
+ li.shr-memoryru {
342
+ background-position:-2100px bottom !important;
343
+ }
344
+
345
+ li.shr-memoryru:hover {
346
+ background-position:-2100px top !important;
347
+ }
348
+
349
+ li.shr-100zakladok {
350
+ background-position:-2170px bottom !important;
351
+ }
352
+
353
+ li.shr-100zakladok:hover {
354
+ background-position:-2170px top !important;
355
+ }
356
+
357
+ li.shr-yandex {
358
+ background-position:-2240px bottom !important;
359
+ }
360
+
361
+ li.shr-yandex:hover {
362
+ background-position:-2240px top !important;
363
+ }
364
+
365
+ li.shr-moemesto {
366
+ background-position:-2310px bottom !important;
367
+ }
368
+
369
+ li.shr-moemesto:hover {
370
+ background-position:-2310px top !important;
371
+ }
372
+
373
+ li.shr-marrows {
374
+ background-position:-2380px bottom !important;
375
+ }
376
+
377
+ li.shr-marrows:hover {
378
+ background-position:-2380px top !important;
379
+ }
380
+
381
+ li.shr-identica {
382
+ background-position:-2450px bottom !important;
383
+ }
384
+
385
+ li.shr-identica:hover {
386
+ background-position:-2450px top !important;
387
+ }
388
+
389
+ li.shr-hackernews {
390
+ background-position:-2520px bottom !important;
391
+ }
392
+
393
+ li.shr-hackernews:hover {
394
+ background-position:-2520px top !important;
395
+ }
396
+
397
+ li.shr-ning {
398
+ background-position:-2590px bottom !important;
399
+ }
400
+
401
+ li.shr-ning:hover {
402
+ background-position:-2590px top !important;
403
+ }
404
+
405
+ li.shr-designbump {
406
+ background-position:-2660px bottom !important;
407
+ }
408
+
409
+ li.shr-designbump:hover {
410
+ background-position:-2660px top !important;
411
+ }
412
+
413
+ li.shr-printfriendly {
414
+ background-position:-2730px bottom !important;
415
+ }
416
+
417
+ li.shr-printfriendly:hover {
418
+ background-position:-2730px top !important;
419
+ }
420
+
421
+ li.shr-fleck {
422
+ background-position:-2800px bottom !important;
423
+ }
424
+
425
+ li.shr-fleck:hover {
426
+ background-position:-2800px top !important;
427
+ }
428
+
429
+ li.shr-netvibes {
430
+ background-position:-2870px bottom !important;
431
+ }
432
+
433
+ li.shr-netvibes:hover {
434
+ background-position:-2870px top !important;
435
+ }
436
+
437
+ li.shr-netvouz {
438
+ background-position:-2940px bottom !important;
439
+ }
440
+
441
+ li.shr-netvouz:hover {
442
+ background-position:-2940px top !important;
443
+ }
444
+
445
+ li.shr-nujij {
446
+ background-position:-3010px bottom !important;
447
+ }
448
+
449
+ li.shr-nujij:hover {
450
+ background-position:-3010px top !important;
451
+ }
452
+
453
+ li.shr-globalgrind {
454
+ background-position:-3080px bottom !important;
455
+ }
456
+
457
+ li.shr-globalgrind:hover {
458
+ background-position:-3080px top !important;
459
+ }
460
+
461
+ li.shr-wikio {
462
+ background-position:-3150px bottom !important;
463
+ }
464
+
465
+ li.shr-wikio:hover {
466
+ background-position:-3150px top !important;
467
+ }
468
+
469
+ li.shr-xerpi {
470
+ background-position:-3220px bottom !important;
471
+ }
472
+
473
+ li.shr-xerpi:hover {
474
+ background-position:-3220px top !important;
475
+ }
476
+
477
+ li.shr-sphinn {
478
+ background-position:-3290px bottom !important;
479
+ }
480
+
481
+ li.shr-sphinn:hover {
482
+ background-position:-3290px top !important;
483
+ }
484
+
485
+ li.shr-hotmail {
486
+ background-position:-3360px bottom !important;
487
+ }
488
+
489
+ li.shr-hotmail:hover {
490
+ background-position:-3360px top !important;
491
+ }
492
+
493
+ li.shr-posterous {
494
+ background-position:-3430px bottom !important;
495
+ }
496
+
497
+ li.shr-posterous:hover {
498
+ background-position:-3430px top !important;
499
+ }
500
+
501
+ li.shr-techmeme {
502
+ background-position:-3500px bottom !important;
503
+ }
504
+
505
+ li.shr-techmeme:hover {
506
+ background-position:-3500px top !important;
507
+ }
508
+
509
+ li.shr-ekudos {
510
+ background-position:-3570px bottom !important;
511
+ }
512
+
513
+ li.shr-ekudos:hover {
514
+ background-position:-3570px top !important;
515
+ }
516
+
517
+ li.shr-pingfm {
518
+ background-position:-3640px bottom !important;
519
+ }
520
+
521
+ li.shr-pingfm:hover {
522
+ background-position:-3640px top !important;
523
+ }
524
+
525
+ li.shr-tomuse {
526
+ background-position:-3710px bottom !important;
527
+ }
528
+
529
+ li.shr-tomuse:hover {
530
+ background-position:-3710px top !important;
531
+ }
532
+
533
+ li.shr-webblend {
534
+ background-position:-3780px bottom !important;
535
+ }
536
+
537
+ li.shr-webblend:hover {
538
+ background-position:-3780px top !important;
539
+ }
540
+
541
+ li.shr-wykop {
542
+ background-position:-3850px bottom !important;
543
+ }
544
+
545
+ li.shr-wykop:hover {
546
+ background-position:-3850px top !important;
547
+ }
548
+
549
+ li.shr-blogengage {
550
+ background-position:-3920px bottom !important;
551
+ }
552
+
553
+ li.shr-blogengage:hover {
554
+ background-position:-3920px top !important;
555
+ }
556
+
557
+ li.shr-hyves {
558
+ background-position:-3990px bottom !important;
559
+ }
560
+
561
+ li.shr-hyves:hover {
562
+ background-position:-3990px top !important;
563
+ }
564
+
565
+ li.shr-pusha {
566
+ background-position:-4060px bottom !important;
567
+ }
568
+
569
+ li.shr-pusha:hover {
570
+ background-position:-4060px top !important;
571
+ }
572
+
573
+ li.shr-hatena {
574
+ background-position:-4130px bottom !important;
575
+ }
576
+
577
+ li.shr-hatena:hover {
578
+ background-position:-4130px top !important;
579
+ }
580
+
581
+ li.shr-mylinkvault {
582
+ background-position:-4200px bottom !important;
583
+ }
584
+
585
+ li.shr-mylinkvault:hover {
586
+ background-position:-4200px top !important;
587
+ }
588
+
589
+ li.shr-slashdot {
590
+ background-position:-4270px bottom !important;
591
+ }
592
+
593
+ li.shr-slashdot:hover {
594
+ background-position:-4270px top !important;
595
+ }
596
+
597
+ li.shr-squidoo {
598
+ background-position:-4340px bottom !important;
599
+ }
600
+
601
+ li.shr-squidoo:hover {
602
+ background-position:-4340px top !important;
603
+ }
604
+
605
+ li.shr-propeller {
606
+ background-position:-4410px bottom !important;
607
+ }
608
+
609
+ li.shr-propeller:hover {
610
+ background-position:-4410px top !important;
611
+ }
612
+
613
+ li.shr-faqpal {
614
+ background-position:-4480px bottom !important;
615
+ }
616
+
617
+ li.shr-faqpal:hover {
618
+ background-position:-4480px top !important;
619
+ }
620
+
621
+ li.shr-evernote {
622
+ background-position:-4550px bottom !important;
623
+ }
624
+
625
+ li.shr-evernote:hover {
626
+ background-position:-4550px top !important;
627
+ }
628
+
629
+ li.shr-meneame {
630
+ background-position:-4620px bottom !important;
631
+ }
632
+
633
+ li.shr-meneame:hover {
634
+ background-position:-4620px top !important;
635
+ }
636
+
637
+ li.shr-bitacoras {
638
+ background-position:-4690px bottom !important;
639
+ }
640
+
641
+ li.shr-bitacoras:hover {
642
+ background-position:-4690px top !important;
643
+ }
644
+
645
+ li.shr-jumptags {
646
+ background-position:-4760px bottom !important;
647
+ }
648
+
649
+ li.shr-jumptags:hover {
650
+ background-position:-4760px top !important;
651
+ }
652
+
653
+ li.shr-bebo {
654
+ background-position:-4830px bottom !important;
655
+ }
656
+
657
+ li.shr-bebo:hover {
658
+ background-position:-4830px top !important;
659
+ }
660
+
661
+ li.shr-n4g {
662
+ background-position:-4900px bottom !important;
663
+ }
664
+
665
+ li.shr-n4g:hover {
666
+ background-position:-4900px top !important;
667
+ }
668
+
669
+ li.shr-strands {
670
+ background-position:-4970px bottom !important;
671
+ }
672
+
673
+ li.shr-strands:hover {
674
+ background-position:-4970px top !important;
675
+ }
676
+
677
+ li.shr-orkut {
678
+ background-position:-5040px bottom !important;
679
+ }
680
+
681
+ li.shr-orkut:hover {
682
+ background-position:-5040px top !important;
683
+ }
684
+
685
+ li.shr-tumblr {
686
+ background-position:-5110px bottom !important;
687
+ }
688
+
689
+ li.shr-tumblr:hover {
690
+ background-position:-5110px top !important;
691
+ }
692
+
693
+ li.shr-stumpedia {
694
+ background-position:-5180px bottom !important;
695
+ }
696
+
697
+ li.shr-stumpedia:hover {
698
+ background-position:-5180px top !important;
699
+ }
700
+
701
+ li.shr-current {
702
+ background-position:-5250px bottom !important;
703
+ }
704
+
705
+ li.shr-current:hover {
706
+ background-position:-5250px top !important;
707
+ }
708
+
709
+ li.shr-blogger {
710
+ background-position:-5320px bottom !important;
711
+ }
712
+
713
+ li.shr-blogger:hover {
714
+ background-position:-5320px top !important;
715
+ }
716
+
717
+ li.shr-plurk {
718
+ background-position:-5390px bottom !important;
719
+ }
720
+
721
+ li.shr-plurk:hover {
722
+ background-position:-5390px top !important;
723
+ }
724
+
725
+ li.shr-virb {
726
+ background-position:-5460px bottom !important;
727
+ }
728
+
729
+ li.shr-virb:hover {
730
+ background-position:-5460px top !important;
731
+ }
732
+
733
+ li.shr-dzone {
734
+ background-position:-5530px bottom !important;
735
+ }
736
+
737
+ li.shr-dzone:hover {
738
+ background-position:-5530px top !important;
739
+ }
740
+
741
+ li.shr-kaevur {
742
+ background-position:-5600px bottom !important;
743
+ }
744
+
745
+ li.shr-kaevur:hover {
746
+ background-position:-5600px top !important;
747
+ }
748
+
749
+ li.shr-boxnet {
750
+ background-position:-5670px bottom !important;
751
+ }
752
+
753
+ li.shr-boxnet:hover {
754
+ background-position:-5670px top !important;
755
+ }
756
+
757
+ li.shr-oknotizie {
758
+ background-position:-5740px bottom !important;
759
+ }
760
+
761
+ li.shr-oknotizie:hover {
762
+ background-position:-5740px top !important;
763
+ }
764
+
765
+ li.shr-bonzobox {
766
+ background-position:-5810px bottom !important;
767
+ }
768
+
769
+ li.shr-bonzobox:hover {
770
+ background-position:-5810px top !important;
771
+ }
772
+
773
+ li.shr-plaxo {
774
+ background-position:-5880px bottom !important;
775
+ }
776
+
777
+ li.shr-plaxo:hover {
778
+ background-position:-5880px top !important;
779
+ }
780
+
781
+ li.shr-springpad {
782
+ background-position:-5950px bottom !important;
783
+ }
784
+
785
+ li.shr-springpad:hover {
786
+ background-position:-5950px top !important;
787
+ }
788
+
789
+ li.shr-zabox {
790
+ background-position:-6020px bottom !important;
791
+ }
792
+
793
+ li.shr-zabox:hover {
794
+ background-position:-6020px top !important;
795
+ }
796
+
797
+ li.shr-viadeo {
798
+ background-position:-6090px bottom !important;
799
+ }
800
+
801
+ li.shr-viadeo:hover {
802
+ background-position:-6090px top !important;
803
+ }
804
+
805
+ li.shr-googlebuzz {
806
+ background-position:-6160px bottom !important;
807
+ }
808
+
809
+ li.shr-googlebuzz:hover {
810
+ background-position:-6160px top !important;
811
+ }
812
+
813
+ li.shr-gmail {
814
+ background-position:-6230px bottom !important;
815
+ }
816
+
817
+ li.shr-gmail:hover {
818
+ background-position:-6230px top !important;
819
+ }
820
+
821
+ li.shr-buzzster {
822
+ background-position:-6300px bottom !important;
823
+ }
824
+
825
+ li.shr-buzzster:hover {
826
+ background-position:-6300px top !important;
827
+ }
828
+
829
+
830
+