bookends 6.0.0.rc3 → 6.0.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/stylesheets/bookends/_fonts.scss +5 -5
- data/app/assets/stylesheets/bookends/_footer.scss +18 -8
- data/app/assets/stylesheets/bookends/_glostick.scss +1 -1
- data/app/assets/stylesheets/bookends/_google-cse.scss +5 -5
- data/app/assets/stylesheets/bookends/_header.scss +9 -9
- data/app/assets/stylesheets/bookends/_search-page.scss +3 -3
- data/app/assets/stylesheets/bookends/_search.scss +1 -1
- data/app/assets/stylesheets/bookends/_variables.scss +3 -3
- data/app/views/bookends/_footer.html.erb +7 -2
- data/app/views/bookends/_header.html.erb +2 -2
- data/app/views/bookends/_search_page.html.erb +1 -1
- data/lib/bookends/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 769390b5f78ad4cce3e82456a0c62e9bfe475c6455df6b8e03bdfbcba66b4209
|
|
4
|
+
data.tar.gz: b4f1ba87cd992b8e9e89e5a70c41a246bcddf8100296cd3606e72b304465c142
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2dd09a764ad9244d3d06c82f686a2ae9c9c5ec1516401e74993225eb7a40075814b42c39d3dfe75eeb4e2665c0ad6a0970dfd785639d78cdf636dabbc604acbd
|
|
7
|
+
data.tar.gz: 98e3d5155f3998d4097a10d3aeaa19aa9512696dbb7d521ed57b138644cc8e38022a79d29bdccc54575e97d55294851f90b463b5dd9ccfa78406e35bf85a472e
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
// ==========================================================================
|
|
4
4
|
|
|
5
5
|
//- Primary font
|
|
6
|
-
@include font-face(BentonSans, 'bentonsans-book',
|
|
7
|
-
@include font-face(BentonSans, 'bentonsans-regular', normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
8
|
-
@include font-face(BentonSans, 'bentonsans-medium', bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
6
|
+
@include font-face(BentonSans, 'bentonsans-book', $font-light, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
7
|
+
@include font-face(BentonSans, 'bentonsans-regular', $font-normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
8
|
+
@include font-face(BentonSans, 'bentonsans-medium', $font-bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
9
9
|
|
|
10
10
|
//- Monospace font
|
|
11
|
-
@include font-face(Inconsolata, 'inconsolata-
|
|
12
|
-
@include font-face(Inconsolata, 'inconsolata-
|
|
11
|
+
@include font-face(Inconsolata, 'inconsolata-regular', $font-normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
12
|
+
@include font-face(Inconsolata, 'inconsolata-bold', $font-bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
ul {
|
|
94
94
|
list-style: none;
|
|
95
95
|
padding-left: 0;
|
|
96
|
-
font-weight:
|
|
96
|
+
font-weight: $font-light;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
h1,
|
|
@@ -108,14 +108,14 @@
|
|
|
108
108
|
h3 {
|
|
109
109
|
color: $color-purple;
|
|
110
110
|
font-size: 14px;
|
|
111
|
-
font-weight:
|
|
111
|
+
font-weight: $font-normal;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
h4 {
|
|
115
115
|
margin: 1.33em 0;
|
|
116
116
|
font-size: 12px;
|
|
117
117
|
text-align: left;
|
|
118
|
-
font-weight: bold;
|
|
118
|
+
font-weight: $font-bold;
|
|
119
119
|
text-transform: uppercase;
|
|
120
120
|
letter-spacing: .1em;
|
|
121
121
|
color: $color-header;
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
|
|
203
203
|
position: relative;
|
|
204
204
|
width: 100%;
|
|
205
|
-
padding-bottom:
|
|
205
|
+
padding-bottom: 15px;
|
|
206
206
|
@include screen(min-width, $threshold-tablet) {
|
|
207
207
|
border-bottom: 1px solid $color-border;
|
|
208
208
|
}
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
text-transform: uppercase;
|
|
241
241
|
letter-spacing: .05em;
|
|
242
242
|
padding: 0;
|
|
243
|
-
font-weight: bold;
|
|
243
|
+
font-weight: $font-bold;
|
|
244
244
|
text-align: center;
|
|
245
245
|
color: #fff;
|
|
246
246
|
|
|
@@ -277,6 +277,16 @@
|
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
+
.language-select {
|
|
281
|
+
margin-top: 10px;
|
|
282
|
+
> a {
|
|
283
|
+
margin: 0 5px;
|
|
284
|
+
@include screen(min-width, $threshold-tablet) {
|
|
285
|
+
margin: 0 5px 0 0;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
280
290
|
iframe {
|
|
281
291
|
position: relative;
|
|
282
292
|
width: 100%;
|
|
@@ -332,7 +342,7 @@
|
|
|
332
342
|
text-transform: uppercase;
|
|
333
343
|
letter-spacing: .05em;
|
|
334
344
|
font-size: 10px;
|
|
335
|
-
font-weight: bold;
|
|
345
|
+
font-weight: $font-bold;
|
|
336
346
|
|
|
337
347
|
@include screen() {
|
|
338
348
|
display: inline-block;
|
|
@@ -431,7 +441,7 @@
|
|
|
431
441
|
margin-top: 0;
|
|
432
442
|
min-width: 200px;
|
|
433
443
|
font-size: 14px;
|
|
434
|
-
font-weight: normal;
|
|
444
|
+
font-weight: $font-normal;
|
|
435
445
|
display: none;
|
|
436
446
|
|
|
437
447
|
@include screen(min-width, $threshold-tablet) {
|
|
@@ -467,7 +477,7 @@
|
|
|
467
477
|
|
|
468
478
|
a {
|
|
469
479
|
color: #444;
|
|
470
|
-
font-weight:
|
|
480
|
+
font-weight: $font-normal;
|
|
471
481
|
|
|
472
482
|
&:hover {
|
|
473
483
|
color: $color-purple;
|
|
@@ -79,10 +79,10 @@ input.gsc-input,
|
|
|
79
79
|
.gssb_a td {
|
|
80
80
|
line-height: normal !important;
|
|
81
81
|
padding: 2px 5px !important;
|
|
82
|
-
font-weight: bold;
|
|
82
|
+
font-weight: $font-bold;
|
|
83
83
|
|
|
84
84
|
b {
|
|
85
|
-
font-weight:
|
|
85
|
+
font-weight: $font-light;
|
|
86
86
|
color: fade-out(#222, .2);
|
|
87
87
|
}
|
|
88
88
|
|
|
@@ -219,7 +219,7 @@ input.gsc-input,
|
|
|
219
219
|
color: #999 !important;
|
|
220
220
|
min-width: 75px !important;
|
|
221
221
|
border-radius: 0 !important;
|
|
222
|
-
font-weight:
|
|
222
|
+
font-weight: $font-light !important;
|
|
223
223
|
@include box-sizing(border-box);
|
|
224
224
|
&:hover, &:focus {
|
|
225
225
|
background: transparent !important;
|
|
@@ -232,7 +232,7 @@ input.gsc-input,
|
|
|
232
232
|
&.gsc-tabhActive {
|
|
233
233
|
color: $purple !important;
|
|
234
234
|
cursor: default;
|
|
235
|
-
font-weight: bold !important;
|
|
235
|
+
font-weight: $font-bold !important;
|
|
236
236
|
background: transparent !important;
|
|
237
237
|
border-bottom: 2px solid $purple !important;
|
|
238
238
|
}
|
|
@@ -375,7 +375,7 @@ input.gsc-input,
|
|
|
375
375
|
|
|
376
376
|
.gs-promotion.gs-result a.gs-title:link,
|
|
377
377
|
.gs-promotion.gs-result a.gs-title:visited {
|
|
378
|
-
font-weight: bold;
|
|
378
|
+
font-weight: $font-bold;
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
//Pagination
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
position: relative;
|
|
54
54
|
font-size: 14px;
|
|
55
|
-
font-weight:
|
|
55
|
+
font-weight: $font-bold;
|
|
56
56
|
-webkit-font-smoothing: antialiased;
|
|
57
57
|
line-height: 1;
|
|
58
58
|
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
font-size: $font-sm;
|
|
209
209
|
min-width: 200px;
|
|
210
210
|
font-size: 14px;
|
|
211
|
-
font-weight: normal;
|
|
211
|
+
font-weight: $font-normal;
|
|
212
212
|
|
|
213
213
|
&.wide {
|
|
214
214
|
min-width: 220px;
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
|
|
252
252
|
li a {
|
|
253
253
|
color: #444;
|
|
254
|
-
font-weight:
|
|
254
|
+
font-weight: $font-normal;
|
|
255
255
|
|
|
256
256
|
&:hover {
|
|
257
257
|
color: $purple;
|
|
@@ -423,12 +423,12 @@
|
|
|
423
423
|
font-size: $font-sm;
|
|
424
424
|
line-height: 1.4;
|
|
425
425
|
color: #333;
|
|
426
|
-
font-weight:
|
|
426
|
+
font-weight: $font-normal;
|
|
427
427
|
margin: .7em 0;
|
|
428
428
|
|
|
429
429
|
a {
|
|
430
430
|
color: #333;
|
|
431
|
-
font-weight:
|
|
431
|
+
font-weight: $font-bold;
|
|
432
432
|
|
|
433
433
|
&:hover {
|
|
434
434
|
color: $purple;
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
color: white;
|
|
471
471
|
background: #96A3B6;
|
|
472
472
|
border-radius: 18px;
|
|
473
|
-
font-weight: bold;
|
|
473
|
+
font-weight: $font-bold;
|
|
474
474
|
text-transform: uppercase;
|
|
475
475
|
vertical-align: middle;
|
|
476
476
|
margin-left: 5px;
|
|
@@ -645,7 +645,7 @@
|
|
|
645
645
|
|
|
646
646
|
a {
|
|
647
647
|
color: fade-out($white, .2);
|
|
648
|
-
font-weight:
|
|
648
|
+
font-weight: $font-normal;
|
|
649
649
|
|
|
650
650
|
&:hover {
|
|
651
651
|
color: $blue;
|
|
@@ -839,7 +839,7 @@
|
|
|
839
839
|
color: fade-out($white, .5);
|
|
840
840
|
font-size: 13px !important;
|
|
841
841
|
line-height: 1.35;
|
|
842
|
-
font-weight:
|
|
842
|
+
font-weight: $font-light;
|
|
843
843
|
@include transition(.15s ease-in-out);
|
|
844
844
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
845
845
|
|
|
@@ -989,7 +989,7 @@
|
|
|
989
989
|
float: left;
|
|
990
990
|
padding: .7em 0 0 .8em;
|
|
991
991
|
font-size: 1.25em;
|
|
992
|
-
font-weight:
|
|
992
|
+
font-weight: $font-normal;
|
|
993
993
|
}
|
|
994
994
|
|
|
995
995
|
#hero {
|
|
@@ -131,7 +131,7 @@ $search-icon-size: 14px;
|
|
|
131
131
|
border-bottom: 2px solid transparent;
|
|
132
132
|
line-height: 1.2;
|
|
133
133
|
font-size: 13px;
|
|
134
|
-
font-weight:
|
|
134
|
+
font-weight: $font-light;
|
|
135
135
|
color: #999;
|
|
136
136
|
|
|
137
137
|
&:hover, &:focus {
|
|
@@ -145,7 +145,7 @@ $search-icon-size: 14px;
|
|
|
145
145
|
&.active {
|
|
146
146
|
border-bottom-color: $purple;
|
|
147
147
|
cursor: default;
|
|
148
|
-
font-weight: bold;
|
|
148
|
+
font-weight: $font-bold;
|
|
149
149
|
color: $purple;
|
|
150
150
|
}
|
|
151
151
|
}
|
|
@@ -190,7 +190,7 @@ $search-icon-size: 14px;
|
|
|
190
190
|
|
|
191
191
|
.search-result-title {
|
|
192
192
|
margin-bottom: 0;
|
|
193
|
-
font-weight: normal;
|
|
193
|
+
font-weight: $font-normal;
|
|
194
194
|
|
|
195
195
|
a:link,
|
|
196
196
|
a:visited {
|
|
@@ -35,9 +35,9 @@ $font-main: "BentonSans", "Helvetica Neue", sans-serif;
|
|
|
35
35
|
$font-mono: "Inconsolata", monospace;
|
|
36
36
|
|
|
37
37
|
//- Font Weights
|
|
38
|
-
$font-light:
|
|
39
|
-
$font-normal:
|
|
40
|
-
$font-bold:
|
|
38
|
+
$font-light: 300;
|
|
39
|
+
$font-normal: 400;
|
|
40
|
+
$font-bold: 700;
|
|
41
41
|
|
|
42
42
|
//- Layout
|
|
43
43
|
$grid-full: 100%;
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
<li><a href="<%= Bookends::Config.host_www %>/customers">Our Customers</a></li>
|
|
33
33
|
<li><a href="https://www.salesforce.com/company/careers/">Careers</a></li>
|
|
34
34
|
<li><a href="<%= Bookends::Config.host_www %>/partnering">Partners</a></li>
|
|
35
|
-
<li><a href="<%= Bookends::Config.host_www %>/elements">Elements</a></li>
|
|
35
|
+
<li><a href="<%= Bookends::Config.host_www %>/elements">Elements Marketplace</a></li>
|
|
36
36
|
</ul>
|
|
37
37
|
</nav>
|
|
38
38
|
<nav class="col">
|
|
@@ -84,6 +84,11 @@
|
|
|
84
84
|
<li><a class="heroku-footer-icon-github" href="https://github.com/heroku" target="_blank" title="Heroku's GitHub">GitHub</a></li>
|
|
85
85
|
<li><a class="heroku-footer-icon-linkedin" href="https://www.linkedin.com/company/heroku" target="_blank" title="Heroku's LinkedIn">LinkedIn</a></li>
|
|
86
86
|
</ul>
|
|
87
|
+
<% if ENV['BOOKENDS_JP_LINK'] == 'true' %>
|
|
88
|
+
<div class="language-select">
|
|
89
|
+
<a href="https://jp.heroku.com/home">日本語</a>
|
|
90
|
+
</div>
|
|
91
|
+
<% end %>
|
|
87
92
|
</div>
|
|
88
93
|
</div>
|
|
89
94
|
<div class="tertiary">
|
|
@@ -94,7 +99,7 @@
|
|
|
94
99
|
<div class="col">
|
|
95
100
|
<ul>
|
|
96
101
|
<li><a href="<%= Bookends::Config.host_www %>/home">heroku.com</a></li>
|
|
97
|
-
<li><a href="
|
|
102
|
+
<li><a href="<%= Bookends::Config.host_www %>/policy/salesforce-heroku-msa">Terms of Service</a></li>
|
|
98
103
|
<li><a href="https://www.salesforce.com/company/privacy/">Privacy</a></li>
|
|
99
104
|
<% # Placeholder for a link to TrustArc's Cookie Consent Manager %>
|
|
100
105
|
<li><span id="teconsent"></span></li>
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
</ul>
|
|
55
55
|
</li>
|
|
56
56
|
<li class="has-dropdown">
|
|
57
|
-
<a href="<%= Bookends::Config.host_elements %>">
|
|
57
|
+
<a href="<%= Bookends::Config.host_elements %>">Marketplace</a>
|
|
58
58
|
<ul class="dropdown">
|
|
59
59
|
<li><a class="bookends-icon addons" href="<%= Bookends::Config.host_elements %>/addons">Add-ons</a></li>
|
|
60
60
|
<li><a class="bookends-icon buttons" href="<%= Bookends::Config.host_elements %>/buttons">Buttons</a></li>
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
<a class="glostick__menu__item glostick__menu__item--dashboard" href="https://dashboard.heroku.com">Dashboard</a>
|
|
136
136
|
<a class="glostick__menu__item glostick__menu__item--databases" href="https://postgres.heroku.com">Databases</a>
|
|
137
137
|
<a class="glostick__menu__item glostick__menu__item--dataclips" href="https://dataclips.heroku.com">Dataclips</a>
|
|
138
|
-
<a class="glostick__menu__item glostick__menu__item--elements" href="<%= Bookends::Config.host_elements %>">
|
|
138
|
+
<a class="glostick__menu__item glostick__menu__item--elements" href="<%= Bookends::Config.host_elements %>">Marketplace</a>
|
|
139
139
|
<a class="glostick__menu__item glostick__menu__item--docs" href="<%= Bookends::Config.host_dev_center %>">Documentation</a>
|
|
140
140
|
<a class="glostick__menu__item glostick__menu__item--support" href="https://help.heroku.com">Support</a>
|
|
141
141
|
</div>
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<ul>
|
|
14
14
|
<li><a href="#" class="js-index-selector search-tab" data-index="www_page_idx">WWW</a></li>
|
|
15
15
|
<li><a href="#" class="js-index-selector search-tab" data-index="dev_center_article_idx">Dev Center</a></li>
|
|
16
|
-
<li><a href="#" class="js-index-selector search-tab" data-index="elements_resource_idx">
|
|
16
|
+
<li><a href="#" class="js-index-selector search-tab" data-index="elements_resource_idx">Marketplace</a></li>
|
|
17
17
|
<li><a href="#" class="js-index-selector search-tab" data-index="blog_post_idx">Blog</a></li>
|
|
18
18
|
</ul>
|
|
19
19
|
</nav>
|
data/lib/bookends/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bookends
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.0
|
|
4
|
+
version: 6.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marketing Web Ops at heroku
|
|
@@ -1130,9 +1130,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1130
1130
|
version: '0'
|
|
1131
1131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1132
1132
|
requirements:
|
|
1133
|
-
- - "
|
|
1133
|
+
- - ">="
|
|
1134
1134
|
- !ruby/object:Gem::Version
|
|
1135
|
-
version:
|
|
1135
|
+
version: '0'
|
|
1136
1136
|
requirements: []
|
|
1137
1137
|
rubyforge_project:
|
|
1138
1138
|
rubygems_version: 2.7.6
|