bookends 3.4.1 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/bookends/icons/cd.svg +1 -0
- data/app/assets/images/bookends/icons/flow.svg +1 -0
- data/app/assets/stylesheets/bookends/_header.scss +21 -4
- data/app/views/bookends/_footer.html.erb +6 -5
- data/app/views/bookends/_header.html.erb +23 -3
- data/lib/bookends/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d1c88118274ff2095c2870c56b0ec8de4c70cfa
|
|
4
|
+
data.tar.gz: 69f161c779f0bf114f236fae98a92bcd255e1633
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b818ee3661a9bd53d708b3a4c45db41c70cad5c402b05ae46330a20a8827fe42bbe50fcdf087f4eb2359dc2d84d4c6fa515eb128a16a2e07afb8f45fff87be9e
|
|
7
|
+
data.tar.gz: fed95f5a190c6a12de3464ed176b234a4c3dd6504669fe00ea4194e3728dee475438883a8c1206ee8c569ca4cf290686762594f00a71261e6c3d73db1f531b17
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><style>.st0{fill:none;stroke:#876aaa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}</style><path class="st0" d="M7.6 11.5l2.7 2.7 9.2-9.1"/><path class="st0" d="M20.2 9.1c.2.8.3 1.6.3 2.4 0 5-4 9-9 9s-9-4-9-9 4-9 9-9c1.5 0 2.9.4 4.1 1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><style>.st0{fill:none;stroke:#876aaa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}</style><path class="st0" d="M5.1 17.9c3.6 3.5 9.3 3.5 12.9 0 2.4-2.4 3.2-5.7 2.4-8.7M17.9 5.1C14.3 1.6 8.6 1.6 5 5.1c-2.4 2.4-3.2 5.7-2.4 8.7"/><path class="st0" d="M8.6 16.9l-3.5 1-.5 3.6M18.4 1.5l-.5 3.6-3.5 1"/></svg>
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
float: left;
|
|
71
71
|
margin: 0;
|
|
72
72
|
padding: 0 10px;
|
|
73
|
+
line-height: 1.4;
|
|
73
74
|
|
|
74
75
|
@include media($desktop) {
|
|
75
76
|
float: none;
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
|
|
86
87
|
> a {
|
|
87
88
|
display: inline-block;
|
|
88
|
-
padding:
|
|
89
|
+
padding: 4px 0;
|
|
89
90
|
text-decoration: none;
|
|
90
91
|
color: fade-out($color-link, .4);
|
|
91
92
|
|
|
@@ -283,10 +284,17 @@
|
|
|
283
284
|
&.dx:before {
|
|
284
285
|
background-image: asset-url('bookends/icons/dx.svg');
|
|
285
286
|
}
|
|
287
|
+
&.flow:before {
|
|
288
|
+
background-image: asset-url('bookends/icons/flow.svg');
|
|
289
|
+
}
|
|
290
|
+
&.cd:before {
|
|
291
|
+
background-image: asset-url('bookends/icons/cd.svg');
|
|
292
|
+
}
|
|
286
293
|
&.opex:before {
|
|
287
294
|
background-image: asset-url('bookends/icons/opex.svg');
|
|
288
295
|
}
|
|
289
|
-
&.runtime:before
|
|
296
|
+
&.runtime:before,
|
|
297
|
+
&.dyno:before {
|
|
290
298
|
background-image: asset-url('bookends/icons/runtime.svg');
|
|
291
299
|
}
|
|
292
300
|
&.postgres:before {
|
|
@@ -357,8 +365,16 @@
|
|
|
357
365
|
}
|
|
358
366
|
|
|
359
367
|
.more-resources,
|
|
368
|
+
.more-heroku-is {
|
|
369
|
+
width: 20%;
|
|
370
|
+
|
|
371
|
+
@include media($tablet) {
|
|
372
|
+
width: 100%;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
360
376
|
.more-languages {
|
|
361
|
-
width:
|
|
377
|
+
width: 15%;
|
|
362
378
|
|
|
363
379
|
@include media($tablet) {
|
|
364
380
|
width: 100%;
|
|
@@ -366,7 +382,7 @@
|
|
|
366
382
|
}
|
|
367
383
|
|
|
368
384
|
.more-blog {
|
|
369
|
-
width:
|
|
385
|
+
width: 45%;
|
|
370
386
|
|
|
371
387
|
.btn-xs {
|
|
372
388
|
border-radius: $border-radius;
|
|
@@ -984,6 +1000,7 @@
|
|
|
984
1000
|
|
|
985
1001
|
color: lighten($purple, 30%);
|
|
986
1002
|
padding: 0;
|
|
1003
|
+
margin: 0;
|
|
987
1004
|
|
|
988
1005
|
.wrapper {
|
|
989
1006
|
padding-bottom: 5.625em;
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<li><a href="<%= Bookends::Config.host_www %>/what">What is Heroku</a></li>
|
|
31
31
|
<li><a href="<%= Bookends::Config.host_www %>/customers">Our Customers</a></li>
|
|
32
32
|
<li><a href="<%= Bookends::Config.host_www %>/careers">Careers</a></li>
|
|
33
|
-
<li><a href="
|
|
33
|
+
<li><a href="<%= Bookends::Config.host_www %>/partnering">Partners</a></li>
|
|
34
34
|
<li><a href="<%= Bookends::Config.host_www %>/elements">Elements</a></li>
|
|
35
35
|
</ul>
|
|
36
36
|
</nav>
|
|
@@ -55,14 +55,15 @@
|
|
|
55
55
|
</form>
|
|
56
56
|
<ul class="social-list">
|
|
57
57
|
<li class="has-dropdown">
|
|
58
|
-
<a class="heroku-footer-icon-rss" href="<%= Bookends::Config.host_blog %>/feed
|
|
58
|
+
<a class="heroku-footer-icon-rss" href="<%= Bookends::Config.host_blog %>/feed" target="_blank"> RSS</a>
|
|
59
59
|
<div class="dropdown">
|
|
60
60
|
<ul>
|
|
61
|
-
<li><a href="<%= Bookends::Config.host_blog %>/feed
|
|
62
|
-
<li><a href="<%= Bookends::Config.host_blog %>/news/feed
|
|
63
|
-
<li><a href="<%= Bookends::Config.host_blog %>/engineering/feed
|
|
61
|
+
<li><a href="<%= Bookends::Config.host_blog %>/feed" target="_blank"><span class="heroku-footer-icon-rss"></span>Heroku Blog</a></li>
|
|
62
|
+
<li><a href="<%= Bookends::Config.host_blog %>/news/feed" target="_blank"><span class="heroku-footer-icon-rss"></span>Heroku News Blog</a></li>
|
|
63
|
+
<li><a href="<%= Bookends::Config.host_blog %>/engineering/feed" target="_blank"><span class="heroku-footer-icon-rss"></span>Heroku Engineering Blog</a></li>
|
|
64
64
|
<li><a href="http://feeds.feedburner.com/herokudevcenterarticles" target="_blank"><span class="heroku-footer-icon-rss"></span>Dev Center Articles</a></li>
|
|
65
65
|
<li><a href="http://feeds.feedburner.com/herokuchangelog" target="_blank"><span class="heroku-footer-icon-rss"></span>Dev Center Changelog</a></li>
|
|
66
|
+
<li><a href="http://feeds.feedburner.com/herokustatus" target="_blank"><span class="heroku-footer-icon-rss"></span>Heroku Status</a></li>
|
|
66
67
|
</ul>
|
|
67
68
|
</div>
|
|
68
69
|
</li>
|
|
@@ -19,9 +19,18 @@
|
|
|
19
19
|
<ul class="dropdown">
|
|
20
20
|
<li class="has-dropdown"><a class="bookends-icon platform" href="<%= Bookends::Config.host_www %>/platform">Heroku Platform</a>
|
|
21
21
|
<ul class="dropdown">
|
|
22
|
-
<li><a class="bookends-icon dx" href="<%= Bookends::Config.host_www %>/dx">Heroku DX</a
|
|
22
|
+
<li class="has-dropdown"><a class="bookends-icon dx" href="<%= Bookends::Config.host_www %>/dx">Heroku DX</a>
|
|
23
|
+
<ul class="dropdown">
|
|
24
|
+
<li><a class="bookends-icon flow" href="<%= Bookends::Config.host_www %>/flow">Heroku Flow</a></li>
|
|
25
|
+
<li><a class="bookends-icon cd" href="<%= Bookends::Config.host_www %>/continuous-delivery">Continuous Delivery</a></li>
|
|
26
|
+
</ul>
|
|
27
|
+
</li>
|
|
23
28
|
<li><a class="bookends-icon opex" href="<%= Bookends::Config.host_www %>/platform/opex">Heroku OpEx</a></li>
|
|
24
|
-
<li><a class="bookends-icon runtime" href="<%= Bookends::Config.host_www %>/platform/runtime">Heroku Runtime</a
|
|
29
|
+
<li class="has-dropdown"><a class="bookends-icon runtime" href="<%= Bookends::Config.host_www %>/platform/runtime">Heroku Runtime</a>
|
|
30
|
+
<ul class="dropdown">
|
|
31
|
+
<li><a class="bookends-icon dyno" href="<%= Bookends::Config.host_www %>/dynos">Heroku Dynos</a></li>
|
|
32
|
+
</ul>
|
|
33
|
+
</li>
|
|
25
34
|
</ul>
|
|
26
35
|
</li>
|
|
27
36
|
<li><a class="bookends-icon postgres" href="<%= Bookends::Config.host_www %>/postgres">Heroku Postgres</a></li>
|
|
@@ -53,7 +62,7 @@
|
|
|
53
62
|
<a class="nav-more" href="#">More</a>
|
|
54
63
|
<div class="dropdown more">
|
|
55
64
|
<section class="more-resources">
|
|
56
|
-
<span class="more-title">
|
|
65
|
+
<span class="more-title">Resources</span>
|
|
57
66
|
<ul>
|
|
58
67
|
<li><a href="<%= Bookends::Config.host_www %>/what">What is Heroku?</a></li>
|
|
59
68
|
<li><a href="<%= Bookends::Config.host_www %>/help">Help</a></li>
|
|
@@ -62,6 +71,17 @@
|
|
|
62
71
|
<li><a href="<%= Bookends::Config.host_www %>/events">Events</a></li>
|
|
63
72
|
</ul>
|
|
64
73
|
</section>
|
|
74
|
+
<section class="more-heroku-is">
|
|
75
|
+
<span class="more-title">Heroku is for</span>
|
|
76
|
+
<ul>
|
|
77
|
+
<li><a href="<%= Bookends::Config.host_www %>/developers">Developers</a></li>
|
|
78
|
+
<li><a href="<%= Bookends::Config.host_www %>/ctos">CTOs</a></li>
|
|
79
|
+
<li><a href="<%= Bookends::Config.host_www %>/team-collaboration">Team Collaboration</a></li>
|
|
80
|
+
<li><a href="<%= Bookends::Config.host_www %>/startups">Startups</a></li>
|
|
81
|
+
<li><a href="<%= Bookends::Config.host_www %>/enterprises">Enterprises</a></li>
|
|
82
|
+
<li><a href="<%= Bookends::Config.host_www %>/agencies">Agencies</a></li>
|
|
83
|
+
</ul>
|
|
84
|
+
</section>
|
|
65
85
|
<section class="more-languages">
|
|
66
86
|
<span class="more-title">Languages</span>
|
|
67
87
|
<ul>
|
data/lib/bookends/version.rb
CHANGED
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: 3.
|
|
4
|
+
version: 3.5.0
|
|
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: 2017-
|
|
11
|
+
date: 2017-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -236,10 +236,12 @@ files:
|
|
|
236
236
|
- app/assets/images/bookends/icons/addons.svg
|
|
237
237
|
- app/assets/images/bookends/icons/buildpacks.svg
|
|
238
238
|
- app/assets/images/bookends/icons/buttons.svg
|
|
239
|
+
- app/assets/images/bookends/icons/cd.svg
|
|
239
240
|
- app/assets/images/bookends/icons/connect.svg
|
|
240
241
|
- app/assets/images/bookends/icons/dx.svg
|
|
241
242
|
- app/assets/images/bookends/icons/elements-information.svg
|
|
242
243
|
- app/assets/images/bookends/icons/enterprise.svg
|
|
244
|
+
- app/assets/images/bookends/icons/flow.svg
|
|
243
245
|
- app/assets/images/bookends/icons/kafka.svg
|
|
244
246
|
- app/assets/images/bookends/icons/opex.svg
|
|
245
247
|
- app/assets/images/bookends/icons/platform.svg
|