guides_style_18f 0.4.1 → 0.4.2
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/README.md +2 -0
- data/lib/guides_style_18f/layouts.rb +2 -1
- data/lib/guides_style_18f/sass/_guides_style_18f_main.scss +4 -4
- data/lib/guides_style_18f/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 256501d0e0299b89af49fb680d03751c32cabbbe
|
|
4
|
+
data.tar.gz: 537d969d10a9972bcdce455141903516fd98576f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2721b93065481ffbb96c437b99cddb3ba521468ccee6891ebfaf157e3ff4e9e0fa3c3934a03274d2c290ca8f0d458119a94e12c7a765d0b449c43b0cccfbbd49
|
|
7
|
+
data.tar.gz: d1b1cf32175edd1c47782c2485edb120058b2b4c786b9db07a0d68916c799ea191f3b5f90afbd36cd1e87d48e200694a0dc7a5f9fb2d3e20c50b3e3dd572ffdc
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
## [`guides_style_18f`](https://rubygems.org/gems/guides_style_18f): 18F Guides style gem
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.org/18F/guides-style)
|
|
4
|
+
|
|
3
5
|
Provides consistent style elements for [Jekyll](https://jekyllrb.com/)-based
|
|
4
6
|
web sites based on the
|
|
5
7
|
[18F Guides Template](https://pages.18f.gov/guides-template/). The 18F Guides
|
|
@@ -43,7 +43,8 @@ module GuidesStyle18F
|
|
|
43
43
|
|
|
44
44
|
def self.register_search_results_layout(site)
|
|
45
45
|
layouts_dir = File.join(site.source, site.config['layouts_dir'])
|
|
46
|
-
|
|
46
|
+
results_layout = File.join(layouts_dir, "#{SEARCH_RESULTS_LAYOUT}.html")
|
|
47
|
+
unless File.exist?(results_layout)
|
|
47
48
|
site.layouts[SEARCH_RESULTS_LAYOUT] = new(
|
|
48
49
|
site, '', SEARCH_RESULTS_LAYOUT)
|
|
49
50
|
end
|
|
@@ -115,7 +115,7 @@ a {
|
|
|
115
115
|
a,
|
|
116
116
|
a:link,
|
|
117
117
|
a:visited {
|
|
118
|
-
color: #
|
|
118
|
+
color: #006FC9;
|
|
119
119
|
text-decoration: none;
|
|
120
120
|
}
|
|
121
121
|
|
|
@@ -130,7 +130,7 @@ a:active {
|
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
a:focus {
|
|
133
|
-
color: #
|
|
133
|
+
color: #006FC9;
|
|
134
134
|
outline: thin dotted;
|
|
135
135
|
text-decoration: none;
|
|
136
136
|
}
|
|
@@ -146,14 +146,14 @@ a.title-link:focus {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
a.skip-link {
|
|
149
|
-
color: #
|
|
149
|
+
color: #fff;
|
|
150
150
|
padding: .25em;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
a.skip-link:hover,
|
|
154
154
|
a.skip-link:active,
|
|
155
155
|
a.skip-link:focus {
|
|
156
|
-
background-color: #
|
|
156
|
+
background-color: #006FC9;
|
|
157
157
|
color: #fff;
|
|
158
158
|
}
|
|
159
159
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guides_style_18f
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Bland
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: go_script
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
98
|
name: rake
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -243,7 +257,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
243
257
|
version: '0'
|
|
244
258
|
requirements: []
|
|
245
259
|
rubyforge_project:
|
|
246
|
-
rubygems_version: 2.
|
|
260
|
+
rubygems_version: 2.2.2
|
|
247
261
|
signing_key:
|
|
248
262
|
specification_version: 4
|
|
249
263
|
summary: 18F Guides Template style elements
|