bookends 4.2.9 → 5.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 +7 -7
- 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/lib/bookends/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0defd3889881696388e3da2be894c1b111b5a8248c379dd1ceffc088b1eafb8
|
|
4
|
+
data.tar.gz: d9f1e51cdee2cf32c9ce27a1e8ee778e37ad72e14be1dd9b2e2d8fdf6f325c75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b3a22451da1c98ad4875b953873c3d6e14beaa06c35dd710756c094a318b0caca4a71859eaefbee56ef7e8517efc03c1ab7afe649e924b7cfd9c3af7e1ff0aa
|
|
7
|
+
data.tar.gz: 49e88928732716373597870a7b4d59d355080a8f7f01690868a8bd8a5b8fd9dddd415d3763e8d1532241ca8181bf81d6574871b86f207e0e21fe4d7896043d1c
|
|
@@ -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;
|
|
@@ -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
|
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
text-transform: uppercase;
|
|
343
343
|
letter-spacing: .05em;
|
|
344
344
|
font-size: 10px;
|
|
345
|
-
font-weight: bold;
|
|
345
|
+
font-weight: $font-bold;
|
|
346
346
|
|
|
347
347
|
@include screen() {
|
|
348
348
|
display: inline-block;
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
margin-top: 0;
|
|
442
442
|
min-width: 200px;
|
|
443
443
|
font-size: 14px;
|
|
444
|
-
font-weight: normal;
|
|
444
|
+
font-weight: $font-normal;
|
|
445
445
|
display: none;
|
|
446
446
|
|
|
447
447
|
@include screen(min-width, $threshold-tablet) {
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
|
|
478
478
|
a {
|
|
479
479
|
color: #444;
|
|
480
|
-
font-weight:
|
|
480
|
+
font-weight: $font-normal;
|
|
481
481
|
|
|
482
482
|
&:hover {
|
|
483
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%;
|
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:
|
|
4
|
+
version: 5.0.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: 2018-04-
|
|
11
|
+
date: 2018-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|