bookends 3.5.0 → 3.6.0

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: 4d1c88118274ff2095c2870c56b0ec8de4c70cfa
4
- data.tar.gz: 69f161c779f0bf114f236fae98a92bcd255e1633
3
+ metadata.gz: 414f59ca3a58b878ba4f7d4840017877a7f37552
4
+ data.tar.gz: 0d817438b23a8f720831c137ddd9ee0f891f3757
5
5
  SHA512:
6
- metadata.gz: b818ee3661a9bd53d708b3a4c45db41c70cad5c402b05ae46330a20a8827fe42bbe50fcdf087f4eb2359dc2d84d4c6fa515eb128a16a2e07afb8f45fff87be9e
7
- data.tar.gz: fed95f5a190c6a12de3464ed176b234a4c3dd6504669fe00ea4194e3728dee475438883a8c1206ee8c569ca4cf290686762594f00a71261e6c3d73db1f531b17
6
+ metadata.gz: 5822285d8a93e42217d57db189bf05f06ea11df3a4139e81300f22553dbedb0d02948a8f87703c3cb18ae8593284b348fa62c54e75cfd1b7012bdce3cc88d2a4
7
+ data.tar.gz: 2237269e43a0427b0f6cb220d219b2e2cea1515b0eca92707281ad9ec02160282cb7f1317465fa6ede3129cd64dba866ea01a5fab4017f8989fb3f540890649c
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><style>.st0{fill:#876aaa}.st1,.st2{fill:none;stroke:#876aaa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}.st2{stroke:#866aaa;stroke-width:1.2}</style><path class="st0" d="M4.1 8c-.6-.2-1.2-.7-1.6-1.2-.1.2-.2.4-.3.7-.9 2.1-1.1 4.4-.5 6.6.1.4.5.7 1 .7H3c.5-.1.9-.7.7-1.2-.6-1.8-.4-3.7.3-5.3 0-.1.1-.2.1-.3zM18.6 4.4C15.8 1.7 11.8.8 8.2 2c.5.5.8 1.1.9 1.8 2.9-.8 5.9-.1 8.1 2 .4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4zM18.8 15.1c.7.1 1.3.5 1.7 1 1.2-2.2 1.5-4.7.8-7.2-.1-.5-.7-.8-1.2-.7-.5.1-.9.7-.7 1.2.5 2 .3 4-.6 5.7zM13.8 19.2c-2.7.8-5.8.1-8-2-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4 2 1.9 4.6 2.9 7.1 2.9 1.1 0 2.2-.2 3.2-.5-.5-.4-.9-1.1-.9-1.8z"/><path class="st1" d="M8.6 16.9l-3.5 1-.5 3.6m13.8-20l-.5 3.6-3.5 1"/><g><circle class="st2" cx="5.5" cy="4.8" r="3.6"/><path class="st2" d="M3.9 4.9l1 1 2.2-2.2"/><circle class="st2" cx="17.4" cy="18.4" r="3.6"/><path class="st2" d="M16.2 17.2l2.4 2.4M18.6 17.2l-2.4 2.4"/></g></svg>
@@ -172,7 +172,7 @@
172
172
 
173
173
  > .dropdown {
174
174
  left: 180px;
175
- top: -7px;
175
+ top: -8px;
176
176
  margin: 0;
177
177
  }
178
178
 
@@ -210,6 +210,10 @@
210
210
  font-size: 14px;
211
211
  font-weight: normal;
212
212
 
213
+ &.wide {
214
+ min-width: 220px;
215
+ }
216
+
213
217
  @media screen and (min-width: $bp-lg + 1) {
214
218
  position: absolute;
215
219
  background: $white;
@@ -290,6 +294,9 @@
290
294
  &.cd:before {
291
295
  background-image: asset-url('bookends/icons/cd.svg');
292
296
  }
297
+ &.ci:before {
298
+ background-image: asset-url('bookends/icons/ci.svg');
299
+ }
293
300
  &.opex:before {
294
301
  background-image: asset-url('bookends/icons/opex.svg');
295
302
  }
@@ -20,9 +20,10 @@
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
22
  <li class="has-dropdown"><a class="bookends-icon dx" href="<%= Bookends::Config.host_www %>/dx">Heroku DX</a>
23
- <ul class="dropdown">
23
+ <ul class="dropdown wide">
24
24
  <li><a class="bookends-icon flow" href="<%= Bookends::Config.host_www %>/flow">Heroku Flow</a></li>
25
25
  <li><a class="bookends-icon cd" href="<%= Bookends::Config.host_www %>/continuous-delivery">Continuous Delivery</a></li>
26
+ <li><a class="bookends-icon ci" href="<%= Bookends::Config.host_www %>/continuous-integration">Continuous Integration</a></li>
26
27
  </ul>
27
28
  </li>
28
29
  <li><a class="bookends-icon opex" href="<%= Bookends::Config.host_www %>/platform/opex">Heroku OpEx</a></li>
@@ -1,3 +1,3 @@
1
1
  module Bookends
2
- VERSION = '3.5.0'.freeze
2
+ VERSION = '3.6.0'.freeze
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: 3.5.0
4
+ version: 3.6.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-05-02 00:00:00.000000000 Z
11
+ date: 2017-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -237,6 +237,7 @@ files:
237
237
  - app/assets/images/bookends/icons/buildpacks.svg
238
238
  - app/assets/images/bookends/icons/buttons.svg
239
239
  - app/assets/images/bookends/icons/cd.svg
240
+ - app/assets/images/bookends/icons/ci.svg
240
241
  - app/assets/images/bookends/icons/connect.svg
241
242
  - app/assets/images/bookends/icons/dx.svg
242
243
  - app/assets/images/bookends/icons/elements-information.svg