bookends 2.4.1 → 2.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7a414d878eb4ec95e482756d0f3466a31e37623
4
- data.tar.gz: 728af629551780f36e23bdbc44d87ad9d1861bf3
3
+ metadata.gz: b7ca12eabd960ba18c82797305697d7d50f15064
4
+ data.tar.gz: 5d7242293127cb10abefa9d8423dc188c6f3b738
5
5
  SHA512:
6
- metadata.gz: 911351e05badc4d725a1a679086aeac7b8d192830b3f9196ebc9f51c8f834f006b5598d6414120ca6b3a89ae0380236c2faf704b1d7681734e378c65cd09fa73
7
- data.tar.gz: 4f6b02a4954df47f107edf08c9a76066e304400c2addd18cf972f8efa56f093b72b32b361ed903a733f31dce8155eed2a893d085379b75269ae75f7a464818c1
6
+ metadata.gz: a11a862634bf0038a0d7ab64843d5afbd6959c4b933c888876cbee8729e295d149a6c4cf1d089b8637e40df1c831041424ee01b7b776f2bc657dc469b6e6aedb
7
+ data.tar.gz: 3bf5ffd0a9b7d996c98a3f6fcd23cc20bf0c4da234070d095615a763b48c42ac858b833e256ea2bfe66fe8c18c6727592626af78fbf34861946d3c007a118465
@@ -51,8 +51,28 @@
51
51
  <p id="bookends-newsletter-result" class="hide"></p>
52
52
  </form>
53
53
  <ul class="social-list">
54
- <li><a class="heroku-footer-icon-rss" href="http://feeds2.feedburner.com/heroku" target="_blank">RSS Feed</a></li>
55
- <li><a class="heroku-footer-icon-twitter" href="https://twitter.com/heroku" target="_blank">Twitter</a></li>
54
+ <li class="has-dropdown">
55
+ <a class="heroku-footer-icon-rss" href="http://feeds2.feedburner.com/heroku" target="_blank"> RSS</a>
56
+ <div class="dropdown">
57
+ <ul>
58
+ <li><a href="http://feeds2.feedburner.com/heroku" target="_blank"><span class="heroku-footer-icon-rss"></span>Heroku Blog</a></li>
59
+ <li><a href="http://feeds.feedburner.com/herokudevcenterarticles" target="_blank"><span class="heroku-footer-icon-rss"></span>Dev Center Articles</a></li>
60
+ <li><a href="http://feeds.feedburner.com/herokuchangelog" target="_blank"><span class="heroku-footer-icon-rss"></span>Dev Center Changelog</a></li>
61
+ <li><a href="https://engineering.heroku.com/feed.xml" target="_blank"><span class="heroku-footer-icon-rss"></span>Engineering Blog</a></li>
62
+ </ul>
63
+ </div>
64
+ </li>
65
+ <li class="has-dropdown">
66
+ <a class="heroku-footer-icon-twitter" href="https://twitter.com/heroku" target="_blank"> Twitter</a>
67
+ <div class="dropdown">
68
+ <ul>
69
+ <li><a href="https://twitter.com/heroku" target="_blank"><span class="heroku-footer-icon-twitter"></span>Heroku</a></li>
70
+ <li><a href="https://twitter.com/herokudevcenter" target="_blank"><span class="heroku-footer-icon-twitter"></span>Dev Center Articles</a></li>
71
+ <li><a href="https://twitter.com/herokuchangelog" target="_blank"><span class="heroku-footer-icon-twitter"></span>Dev Center Changelog</a></li>
72
+ <li><a href="https://twitter.com/herokustatus" target="_blank"><span class="heroku-footer-icon-twitter"></span>Heroku Status</a></li>
73
+ </ul>
74
+ </div>
75
+ </li>
56
76
  <li><a class="heroku-footer-icon-facebook" href="https://facebook.com/heroku" target="_blank">Facebook</a></li>
57
77
  <li><a class="heroku-footer-icon-github" href="https://github.com/heroku" target="_blank">Github</a></li>
58
78
  <li><a class="heroku-footer-icon-linkedin" href="https://www.linkedin.com/company/heroku" target="_blank">LinkedIn</a></li>
@@ -1,2 +1,21 @@
1
1
  @import 'glostick';
2
2
  @import 'footer';
3
+
4
+ .wrapper-full {
5
+ -webkit-box-sizing: border-box;
6
+ -moz-box-sizing: border-box;
7
+ box-sizing: border-box;
8
+ margin: 0 auto;
9
+ max-width: 66.25em;
10
+ width: 93.96226%;
11
+ position: relative;
12
+ max-width: none;
13
+ width: 100%;
14
+ padding: 20px;
15
+
16
+ &:after {
17
+ content: "";
18
+ display: table;
19
+ clear: both;
20
+ }
21
+ }
@@ -270,7 +270,7 @@
270
270
 
271
271
  .social-list {
272
272
  margin: 0;
273
- li {
273
+ > li {
274
274
  display: inline-block;
275
275
  margin-right: 5px;
276
276
  }
@@ -355,6 +355,7 @@
355
355
  background-color: transparent;
356
356
  background-repeat: no-repeat;
357
357
  background-image: asset-url("#{$asset-path}/footer_sprite.png");
358
+ transition: none;
358
359
  @include hide-text;
359
360
  @include hidpi {
360
361
  background-image: asset-url("#{$asset-path}/footer_sprite@2x.png");
@@ -400,4 +401,69 @@
400
401
  }
401
402
  }
402
403
 
404
+ .has-dropdown {
405
+
406
+ //Dropdown hover
407
+ &:hover {
408
+
409
+ .dropdown {
410
+ visibility: visible;
411
+ opacity: 1;
412
+ margin-top: 3px;
413
+ @include transition-delay(0s);
414
+ }
415
+ }
416
+
417
+ }
418
+
419
+ .dropdown {
420
+ $dropdown-padding: 16px;
421
+
422
+ margin-top: 0;
423
+ min-width: 200px;
424
+ font-size: 14px;
425
+ font-weight: normal;
426
+ display: none;
427
+
428
+ @include screen(min-width, $threshold-tablet) {
429
+ display: block;
430
+ position: absolute;
431
+ background: #fff;
432
+ border-radius: 4px;
433
+ z-index: 3;
434
+ padding: $dropdown-padding/2 $dropdown-padding;
435
+ overflow: visible;
436
+ box-shadow: 0 2px 7px fade-out(#000, .825);
437
+ }
438
+
439
+ [class^="heroku-footer-icon-"] {
440
+ margin-right: 5px;
441
+ float: left;
442
+ font: inherit;
443
+ }
444
+
445
+ // Transition
446
+ visibility: hidden;
447
+ opacity: 0;
448
+ @include transition(visibility 0s 0.15s, opacity 0.15s, margin-top .15s);
449
+
450
+ ul {
451
+ margin: .5em 0 0;
452
+ }
453
+
454
+ li {
455
+ display: block;
456
+ margin-bottom: 5px;
457
+ }
458
+
459
+ a {
460
+ color: #444;
461
+ font-weight: 400;
462
+
463
+ &:hover {
464
+ color: $color-purple;
465
+ }
466
+ }
467
+ }
468
+
403
469
  }
@@ -1,3 +1,3 @@
1
1
  module Bookends
2
- VERSION = "2.4.1"
2
+ VERSION = "2.4.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookends
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 2.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marketing Web Ops at heroku
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-29 00:00:00.000000000 Z
11
+ date: 2016-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor