just-the-docs 0.3.2 → 0.3.3

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
  SHA256:
3
- metadata.gz: ac9092ff508cd154919cdc59ec256e3a8cc5e77664ac38f56d2150c6677cb824
4
- data.tar.gz: 0dedab94fdb0dfc0d684e9bd164bfe61280c0b197572ac0ee20804d5890c8ee9
3
+ metadata.gz: b0e639b03de7ff73dc4226935d3fc021ead88b3edc55c6efc68824c06fd8847c
4
+ data.tar.gz: 3e47409e50632b2cf5af0b8234a54fdb81998113771ef8bfcc6efb6ebc5d1469
5
5
  SHA512:
6
- metadata.gz: 496a3e88439549090a080202977a0eac87f94ddbd6acaf6843fbe8db2a00dddda3b241949ff71f7332d4c736671142571d756807ddc078d45591ba1c0e646791
7
- data.tar.gz: ab731d78317a8dbd1c590cd21a2f93ba942a8e0638221674c3f5123938814ae012112a141a05d88b61de4a3badeedeba2bbf9a7cf1c0e1bc8255e3dd73fdeb96
6
+ metadata.gz: d0c799638046d8577432f98dfc2feb459f58ff2d4eee328c7a68aaa898376f9dfffc2dfe940d00303b2019215ceb528e98b4fa7043908ef62f25fdb001c9658d
7
+ data.tar.gz: 185ac87f4811ab3b36320dda173e57d2105447955795b8272bb9c3f9adf93502b48c9592355c547412047610ec24dbc448b702ae54ca8be588a49403c8c5f879
@@ -0,0 +1,3 @@
1
+ {%- if site.footer_content -%}
2
+ <p class="text-small text-grey-dk-100 mb-0">{{ site.footer_content }}</p>
3
+ {%- endif -%}
File without changes
@@ -1,6 +1,5 @@
1
1
  <ul class="nav-list">
2
- {%- assign included_pages = include.pages
3
- | where_exp:"item", "item.nav_exclude != true"
2
+ {%- assign titled_pages = include.pages
4
3
  | where_exp:"item", "item.title != nil" -%}
5
4
 
6
5
  {%- comment -%}
@@ -15,9 +14,9 @@
15
14
  The case-sensitivity of string sorting is determined by `site.nav_sort`.
16
15
  {%- endcomment -%}
17
16
 
18
- {%- assign string_ordered_pages = included_pages
17
+ {%- assign string_ordered_pages = titled_pages
19
18
  | where_exp:"item", "item.nav_order == nil" -%}
20
- {%- assign nav_ordered_pages = included_pages
19
+ {%- assign nav_ordered_pages = titled_pages
21
20
  | where_exp:"item", "item.nav_order != nil" -%}
22
21
 
23
22
  {%- comment -%}
@@ -60,10 +59,8 @@
60
59
 
61
60
  {%- for node in pages_list -%}
62
61
  {%- if node.parent == nil -%}
62
+ {%- unless node.nav_exclude -%}
63
63
  <li class="nav-list-item{% if page.url == node.url or page.parent == node.title or page.grand_parent == node.title %} active{% endif %}">
64
- {%- if page.parent == node.title or page.grand_parent == node.title -%}
65
- {%- assign first_level_url = node.url | absolute_url -%}
66
- {%- endif -%}
67
64
  {%- if node.has_children -%}
68
65
  <a href="#" class="nav-list-expander"><svg viewBox="0 0 24 24"><use xlink:href="#svg-arrow-right"></use></svg></a>
69
66
  {%- endif -%}
@@ -72,10 +69,8 @@
72
69
  {%- assign children_list = pages_list | where: "parent", node.title -%}
73
70
  <ul class="nav-list ">
74
71
  {%- for child in children_list -%}
72
+ {%- unless child.nav_exclude -%}
75
73
  <li class="nav-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}">
76
- {%- if page.url == child.url or page.parent == child.title -%}
77
- {%- assign second_level_url = child.url | absolute_url -%}
78
- {%- endif -%}
79
74
  {%- if child.has_children -%}
80
75
  <a href="#" class="nav-list-expander"><svg viewBox="0 0 24 24"><use xlink:href="#svg-arrow-right"></use></svg></a>
81
76
  {%- endif -%}
@@ -84,17 +79,21 @@
84
79
  {%- assign grand_children_list = pages_list | where: "parent", child.title | where: "grand_parent", node.title -%}
85
80
  <ul class="nav-list">
86
81
  {%- for grand_child in grand_children_list -%}
82
+ {%- unless grand_child.nav_exclude -%}
87
83
  <li class="nav-list-item {% if page.url == grand_child.url %} active{% endif %}">
88
84
  <a href="{{ grand_child.url | absolute_url }}" class="nav-list-link{% if page.url == grand_child.url %} active{% endif %}">{{ grand_child.title }}</a>
89
85
  </li>
86
+ {%- endunless -%}
90
87
  {%- endfor -%}
91
88
  </ul>
92
89
  {%- endif -%}
93
90
  </li>
91
+ {%- endunless -%}
94
92
  {%- endfor -%}
95
93
  </ul>
96
94
  {%- endif -%}
97
95
  </li>
96
+ {%- endunless -%}
98
97
  {%- endif -%}
99
98
  {%- endfor -%}
100
99
  </ul>
@@ -80,6 +80,7 @@ layout: table_wrappers
80
80
  <div id="search-results" class="search-results"></div>
81
81
  </div>
82
82
  {% endif %}
83
+ {% include header_custom.html %}
83
84
  {% if site.aux_links %}
84
85
  <nav aria-label="Auxiliary" class="aux-nav">
85
86
  <ul class="aux-nav-list">
@@ -101,6 +102,21 @@ layout: table_wrappers
101
102
  <div id="main-content-wrap" class="main-content-wrap">
102
103
  {% unless page.url == "/" %}
103
104
  {% if page.parent %}
105
+ {%- for node in pages_list -%}
106
+ {%- if node.parent == nil -%}
107
+ {%- if page.parent == node.title or page.grand_parent == node.title -%}
108
+ {%- assign first_level_url = node.url | absolute_url -%}
109
+ {%- endif -%}
110
+ {%- if node.has_children -%}
111
+ {%- assign children_list = pages_list | where: "parent", node.title -%}
112
+ {%- for child in children_list -%}
113
+ {%- if page.url == child.url or page.parent == child.title -%}
114
+ {%- assign second_level_url = child.url | absolute_url -%}
115
+ {%- endif -%}
116
+ {%- endfor -%}
117
+ {%- endif -%}
118
+ {%- endif -%}
119
+ {%- endfor -%}
104
120
  <nav aria-label="Breadcrumb" class="breadcrumb-nav">
105
121
  <ol class="breadcrumb-nav-list">
106
122
  {% if page.grand_parent %}
@@ -134,15 +150,17 @@ layout: table_wrappers
134
150
  </ul>
135
151
  {% endif %}
136
152
 
137
- {% if site.footer_content != nil or site.last_edit_timestamp or site.gh_edit_link %}
153
+ {% capture footer_custom %}
154
+ {%- include footer_custom.html -%}
155
+ {% endcapture %}
156
+ {% if footer_custom != "" or site.last_edit_timestamp or site.gh_edit_link %}
138
157
  <hr>
139
158
  <footer>
140
159
  {% if site.back_to_top %}
141
160
  <p><a href="#top" id="back-to-top">{{ site.back_to_top_text }}</a></p>
142
161
  {% endif %}
143
- {% if site.footer_content != nil %}
144
- <p class="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p>
145
- {% endif %}
162
+
163
+ {{ footer_custom }}
146
164
 
147
165
  {% if site.last_edit_timestamp or site.gh_edit_link %}
148
166
  <div class="d-flex mt-2">
@@ -11,6 +11,11 @@ code {
11
11
  border-radius: $border-radius;
12
12
  }
13
13
 
14
+ // Avoid appearance of dark border around visited code links in Safari
15
+ a:visited code {
16
+ border-color: $border-color;
17
+ }
18
+
14
19
  // Content structure for highlighted code blocks using fences or Liquid
15
20
  //
16
21
  // ```[LANG]...```, no kramdown line_numbers:
@@ -43,6 +48,7 @@ div.highlighter-rouge {
43
48
  padding: $sp-3;
44
49
  margin-top: 0;
45
50
  margin-bottom: $sp-3;
51
+ overflow-x: auto;
46
52
  background-color: $code-background-color;
47
53
  border-radius: $border-radius;
48
54
  box-shadow: none;
@@ -130,6 +130,38 @@
130
130
  grid-column: 2;
131
131
  margin-bottom: 0;
132
132
  margin-left: 1em;
133
+ blockquote,
134
+ div,
135
+ dl,
136
+ dt,
137
+ h1,
138
+ h2,
139
+ h3,
140
+ h4,
141
+ h5,
142
+ h6,
143
+ li,
144
+ ol,
145
+ p,
146
+ pre,
147
+ table,
148
+ ul,
149
+ .table-wrapper {
150
+ &:first-child {
151
+ margin-top: 0;
152
+ }
153
+ }
154
+ }
155
+
156
+ dd,
157
+ ol,
158
+ ul {
159
+ dl:first-child {
160
+ dt:first-child,
161
+ dd:nth-child(2) {
162
+ margin-top: 0;
163
+ }
164
+ }
133
165
  }
134
166
 
135
167
  .anchor-heading {
@@ -1,78 +1,7 @@
1
- # normalize.scss v0.1.0
1
+ # normalize.scss
2
2
 
3
- Normalize.scss is the SCSS version of [normalize.css](http://necolas.github.io/normalize.css), a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.
3
+ Normalize.scss is an SCSS copy of [normalize.css](http://necolas.github.io/normalize.css), a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.
4
4
 
5
- [View the normalize.css test file](http://necolas.github.io/normalize.css/latest/test.html)
6
-
7
- ## Install
8
-
9
- * [npm](http://npmjs.org/): `npm install --save normalize.scss`
10
- * [Component(1)](https://github.com/component/component/): `component install guerrero/normalize.scss`
11
- * [Bower](http://bower.io/): `bower install --save normalize.scss`
12
- * Download: Go to [this link](https://raw.githubusercontent.com/guerrero/normalize.scss/master/normalize.scss), press right-click on the page and choose "Save as..."
13
-
14
- No other styles should come before Normalize.scss.
15
-
16
- It's recommendable to modify `normalize.scss` to suit it to your project
17
-
18
- ## What does it do?
19
-
20
- * Preserves useful defaults, unlike many CSS resets.
21
- * Normalizes styles for a wide range of elements.
22
- * Corrects bugs and common browser inconsistencies.
23
- * Improves usability with subtle improvements.
24
- * Explains what code does using detailed comments.
25
-
26
- ## Browser support
27
-
28
- * Google Chrome (latest)
29
- * Mozilla Firefox (latest)
30
- * Mozilla Firefox 4
31
- * Opera (latest)
32
- * Apple Safari 6+
33
- * Internet Explorer 8+
34
-
35
- [Normalize.css v1 provides legacy browser
36
- support](https://github.com/necolas/normalize.css/tree/v1) (IE 6+, Safari 4+),
37
- but is no longer actively developed.
38
-
39
- ## Extended details
40
-
41
- Additional detail and explanation of the esoteric parts of normalize.css.
5
+ The [normalize.scss fork](https://github.com/guerrero/normalize.scss) of [normalize.css](http://necolas.github.io/normalize.css) was archived in 2014, and has not been updated since v0.1.0.
42
6
 
43
- #### `pre, code, kbd, samp`
44
-
45
- The `font-family: monospace, monospace` hack fixes the inheritance and scaling
46
- of font-size for preformated text. The duplication of `monospace` is
47
- intentional. [Source](http://en.wikipedia.org/wiki/User:Davidgothberg/Test59).
48
-
49
- #### `sub, sup`
50
-
51
- Normally, using `sub` or `sup` affects the line-box height of text in all
52
- browsers. [Source](http://gist.github.com/413930).
53
-
54
- #### `svg:not(:root)`
55
-
56
- Adding `overflow: hidden` fixes IE9's SVG rendering. Earlier versions of IE
57
- don't support SVG, so we can safely use the `:not()` and `:root` selectors that
58
- modern browsers use in the default UA stylesheets to apply this style. [SVG
59
- Mailing List discussion](http://lists.w3.org/Archives/Public/public-svg-wg/2008JulSep/0339.html)
60
-
61
- #### `input[type="search"]`
62
-
63
- The search input is not fully stylable by default. In Chrome and Safari on
64
- OSX/iOS you can't control `font`, `padding`, `border`, or `background`. In
65
- Chrome and Safari on Windows you can't control `border` properly. It will apply
66
- `border-width` but will only show a border color (which cannot be controlled)
67
- for the outer 1px of that border. Applying `-webkit-appearance: textfield`
68
- addresses these issues without removing the benefits of search inputs (e.g.
69
- showing past searches).
70
-
71
- #### `legend`
72
-
73
- Adding `border: 0` corrects an IE 8–11 bug where `color` (yes, `color`) is not
74
- inherited by `legend`.
75
-
76
- ## Acknowledgements
77
-
78
- Normalize.scss is a project by [Alex Guerrero](https://github.com/guerrero) based on [normalize.css](http://necolas.github.io/normalize.css) from [Nicolas Gallagher](https://github.com/necolas), co-created with [Jonathan Neal](https://github.com/jonathantneal).
7
+ [View the normalize.css test file](http://necolas.github.io/normalize.css/latest/test.html)
@@ -1,89 +1,76 @@
1
- /*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
2
5
 
3
6
  /**
4
- * 1. Set default font family to sans-serif.
5
- * 2. Prevent iOS text size adjust after orientation change, without disabling
6
- * user zoom.
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
7
9
  */
8
10
 
9
11
  html {
10
- font-family: sans-serif; /* 1 */
11
- -ms-text-size-adjust: 100%; /* 2 */
12
+ line-height: 1.15; /* 1 */
12
13
  -webkit-text-size-adjust: 100%; /* 2 */
13
14
  }
14
15
 
16
+ /* Sections
17
+ ========================================================================== */
18
+
15
19
  /**
16
- * Remove default margin.
20
+ * Remove the margin in all browsers.
17
21
  */
18
22
 
19
23
  body {
20
24
  margin: 0;
21
25
  }
22
26
 
23
- /* HTML5 display definitions
24
- ========================================================================== */
25
-
26
27
  /**
27
- * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
- * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
- * and Firefox.
30
- * Correct `block` display not defined for `main` in IE 11.
31
- */
32
-
33
- article,
34
- aside,
35
- details,
36
- figcaption,
37
- figure,
38
- footer,
39
- header,
40
- hgroup,
41
- main,
42
- menu,
43
- nav,
44
- section,
45
- summary {
28
+ * Render the `main` element consistently in IE.
29
+ */
30
+
31
+ main {
46
32
  display: block;
47
33
  }
48
34
 
49
35
  /**
50
- * 1. Correct `inline-block` display not defined in IE 8/9.
51
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
36
+ * Correct the font size and margin on `h1` elements within `section` and
37
+ * `article` contexts in Chrome, Firefox, and Safari.
52
38
  */
53
39
 
54
- audio,
55
- canvas,
56
- progress,
57
- video {
58
- display: inline-block; /* 1 */
59
- vertical-align: baseline; /* 2 */
40
+ h1 {
41
+ font-size: 2em;
42
+ margin: 0.67em 0;
60
43
  }
61
44
 
45
+ /* Grouping content
46
+ ========================================================================== */
47
+
62
48
  /**
63
- * Prevent modern browsers from displaying `audio` without controls.
64
- * Remove excess height in iOS 5 devices.
49
+ * 1. Add the correct box sizing in Firefox.
50
+ * 2. Show the overflow in Edge and IE.
65
51
  */
66
52
 
67
- audio:not([controls]) {
68
- display: none;
69
- height: 0;
53
+ hr {
54
+ box-sizing: content-box; /* 1 */
55
+ height: 0; /* 1 */
56
+ overflow: visible; /* 2 */
70
57
  }
71
58
 
72
59
  /**
73
- * Address `[hidden]` styling not present in IE 8/9/10.
74
- * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
60
+ * 1. Correct the inheritance and scaling of font size in all browsers.
61
+ * 2. Correct the odd `em` font sizing in all browsers.
75
62
  */
76
63
 
77
- [hidden],
78
- template {
79
- display: none;
64
+ pre {
65
+ font-family: monospace, monospace; /* 1 */
66
+ font-size: 1em; /* 2 */
80
67
  }
81
68
 
82
- /* Links
69
+ /* Text-level semantics
83
70
  ========================================================================== */
84
71
 
85
72
  /**
86
- * Remove the gray background color from active links in IE 10.
73
+ * Remove the gray background on active links in IE 10.
87
74
  */
88
75
 
89
76
  a {
@@ -91,63 +78,39 @@ a {
91
78
  }
92
79
 
93
80
  /**
94
- * Improve readability when focused and also mouse hovered in all browsers.
95
- */
96
-
97
- a:active,
98
- a:hover {
99
- outline: 0;
100
- }
101
-
102
- /* Text-level semantics
103
- ========================================================================== */
104
-
105
- /**
106
- * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
81
+ * 1. Remove the bottom border in Chrome 57-
82
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
107
83
  */
108
84
 
109
85
  abbr[title] {
110
- border-bottom: 1px dotted;
86
+ border-bottom: none; /* 1 */
87
+ text-decoration: underline; /* 2 */
88
+ text-decoration: underline dotted; /* 2 */
111
89
  }
112
90
 
113
91
  /**
114
- * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
92
+ * Add the correct font weight in Chrome, Edge, and Safari.
115
93
  */
116
94
 
117
95
  b,
118
96
  strong {
119
- font-weight: bold;
120
- }
121
-
122
- /**
123
- * Address styling not present in Safari and Chrome.
124
- */
125
-
126
- dfn {
127
- font-style: italic;
128
- }
129
-
130
- /**
131
- * Address variable `h1` font-size and margin within `section` and `article`
132
- * contexts in Firefox 4+, Safari, and Chrome.
133
- */
134
-
135
- h1 {
136
- font-size: 2em;
137
- margin: 0.67em 0;
97
+ font-weight: bolder;
138
98
  }
139
99
 
140
100
  /**
141
- * Address styling not present in IE 8/9.
101
+ * 1. Correct the inheritance and scaling of font size in all browsers.
102
+ * 2. Correct the odd `em` font sizing in all browsers.
142
103
  */
143
104
 
144
- mark {
145
- background: #ff0;
146
- color: #000;
105
+ code,
106
+ kbd,
107
+ samp {
108
+ font-family: monospace, monospace; /* 1 */
109
+ font-size: 1em; /* 2 */
147
110
  }
148
111
 
149
112
  /**
150
- * Address inconsistent and variable font size in all browsers.
113
+ * Add the correct font size in all browsers.
151
114
  */
152
115
 
153
116
  small {
@@ -155,7 +118,8 @@ small {
155
118
  }
156
119
 
157
120
  /**
158
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
121
+ * Prevent `sub` and `sup` elements from affecting the line height in
122
+ * all browsers.
159
123
  */
160
124
 
161
125
  sub,
@@ -166,262 +130,220 @@ sup {
166
130
  vertical-align: baseline;
167
131
  }
168
132
 
169
- sup {
170
- top: -0.5em;
171
- }
172
-
173
133
  sub {
174
134
  bottom: -0.25em;
175
135
  }
176
136
 
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
177
141
  /* Embedded content
178
142
  ========================================================================== */
179
143
 
180
144
  /**
181
- * Remove border when inside `a` element in IE 8/9/10.
145
+ * Remove the border on images inside links in IE 10.
182
146
  */
183
147
 
184
148
  img {
185
- border: 0;
186
- }
187
-
188
- /**
189
- * Correct overflow not hidden in IE 9/10/11.
190
- */
191
-
192
- svg:not(:root) {
193
- overflow: hidden;
149
+ border-style: none;
194
150
  }
195
151
 
196
- /* Grouping content
152
+ /* Forms
197
153
  ========================================================================== */
198
154
 
199
155
  /**
200
- * Address margin not present in IE 8/9 and Safari.
156
+ * 1. Change the font styles in all browsers.
157
+ * 2. Remove the margin in Firefox and Safari.
201
158
  */
202
159
 
203
- figure {
204
- margin: 1em 40px;
205
- }
206
-
207
- /**
208
- * Address differences between Firefox and other browsers.
209
- */
210
-
211
- hr {
212
- -moz-box-sizing: content-box;
213
- box-sizing: content-box;
214
- height: 0;
160
+ button,
161
+ input,
162
+ optgroup,
163
+ select,
164
+ textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: 1.15; /* 1 */
168
+ margin: 0; /* 2 */
215
169
  }
216
170
 
217
171
  /**
218
- * Contain overflow in all browsers.
172
+ * Show the overflow in IE.
173
+ * 1. Show the overflow in Edge.
219
174
  */
220
175
 
221
- pre {
222
- overflow: auto;
176
+ button,
177
+ input { /* 1 */
178
+ overflow: visible;
223
179
  }
224
180
 
225
181
  /**
226
- * Address odd `em`-unit font size rendering in all browsers.
182
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
183
+ * 1. Remove the inheritance of text transform in Firefox.
227
184
  */
228
185
 
229
- code,
230
- kbd,
231
- pre,
232
- samp {
233
- font-family: monospace, monospace;
234
- font-size: 1em;
186
+ button,
187
+ select { /* 1 */
188
+ text-transform: none;
235
189
  }
236
190
 
237
- /* Forms
238
- ========================================================================== */
239
-
240
- /**
241
- * Known limitation: by default, Chrome and Safari on OS X allow very limited
242
- * styling of `select`, unless a `border` property is set.
243
- */
244
-
245
191
  /**
246
- * 1. Correct color not being inherited.
247
- * Known issue: affects color of disabled elements.
248
- * 2. Correct font properties not being inherited.
249
- * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
192
+ * Correct the inability to style clickable types in iOS and Safari.
250
193
  */
251
194
 
252
195
  button,
253
- input,
254
- optgroup,
255
- select,
256
- textarea {
257
- color: inherit; /* 1 */
258
- font: inherit; /* 2 */
259
- margin: 0; /* 3 */
196
+ [type="button"],
197
+ [type="reset"],
198
+ [type="submit"] {
199
+ -webkit-appearance: button;
260
200
  }
261
201
 
262
202
  /**
263
- * Address `overflow` set to `hidden` in IE 8/9/10/11.
203
+ * Remove the inner border and padding in Firefox.
264
204
  */
265
205
 
266
- button {
267
- overflow: visible;
206
+ button::-moz-focus-inner,
207
+ [type="button"]::-moz-focus-inner,
208
+ [type="reset"]::-moz-focus-inner,
209
+ [type="submit"]::-moz-focus-inner {
210
+ border-style: none;
211
+ padding: 0;
268
212
  }
269
213
 
270
214
  /**
271
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
272
- * All other form control elements do not inherit `text-transform` values.
273
- * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
- * Correct `select` style inheritance in Firefox.
215
+ * Restore the focus styles unset by the previous rule.
275
216
  */
276
217
 
277
- button,
278
- select {
279
- text-transform: none;
218
+ button:-moz-focusring,
219
+ [type="button"]:-moz-focusring,
220
+ [type="reset"]:-moz-focusring,
221
+ [type="submit"]:-moz-focusring {
222
+ outline: 1px dotted ButtonText;
280
223
  }
281
224
 
282
225
  /**
283
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
- * and `video` controls.
285
- * 2. Correct inability to style clickable `input` types in iOS.
286
- * 3. Improve usability and consistency of cursor style between image-type
287
- * `input` and others.
226
+ * Correct the padding in Firefox.
288
227
  */
289
228
 
290
- button,
291
- html input[type="button"], /* 1 */
292
- input[type="reset"],
293
- input[type="submit"] {
294
- -webkit-appearance: button; /* 2 */
295
- cursor: pointer; /* 3 */
229
+ fieldset {
230
+ padding: 0.35em 0.75em 0.625em;
296
231
  }
297
232
 
298
233
  /**
299
- * Re-set default cursor for disabled elements.
234
+ * 1. Correct the text wrapping in Edge and IE.
235
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
236
+ * 3. Remove the padding so developers are not caught out when they zero out
237
+ * `fieldset` elements in all browsers.
300
238
  */
301
239
 
302
- button[disabled],
303
- html input[disabled] {
304
- cursor: default;
240
+ legend {
241
+ box-sizing: border-box; /* 1 */
242
+ color: inherit; /* 2 */
243
+ display: table; /* 1 */
244
+ max-width: 100%; /* 1 */
245
+ padding: 0; /* 3 */
246
+ white-space: normal; /* 1 */
305
247
  }
306
248
 
307
249
  /**
308
- * Remove inner padding and border in Firefox 4+.
250
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
309
251
  */
310
252
 
311
- button::-moz-focus-inner,
312
- input::-moz-focus-inner {
313
- border: 0;
314
- padding: 0;
253
+ progress {
254
+ vertical-align: baseline;
315
255
  }
316
256
 
317
257
  /**
318
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
- * the UA stylesheet.
258
+ * Remove the default vertical scrollbar in IE 10+.
320
259
  */
321
260
 
322
- input {
323
- line-height: normal;
261
+ textarea {
262
+ overflow: auto;
324
263
  }
325
264
 
326
265
  /**
327
- * It's recommended that you don't attempt to style these elements.
328
- * Firefox's implementation doesn't respect box-sizing, padding, or width.
329
- *
330
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
331
- * 2. Remove excess padding in IE 8/9/10.
266
+ * 1. Add the correct box sizing in IE 10.
267
+ * 2. Remove the padding in IE 10.
332
268
  */
333
269
 
334
- input[type="checkbox"],
335
- input[type="radio"] {
270
+ [type="checkbox"],
271
+ [type="radio"] {
336
272
  box-sizing: border-box; /* 1 */
337
273
  padding: 0; /* 2 */
338
274
  }
339
275
 
340
276
  /**
341
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
- * `font-size` values of the `input`, it causes the cursor style of the
343
- * decrement button to change from `default` to `text`.
277
+ * Correct the cursor style of increment and decrement buttons in Chrome.
344
278
  */
345
279
 
346
- input[type="number"]::-webkit-inner-spin-button,
347
- input[type="number"]::-webkit-outer-spin-button {
280
+ [type="number"]::-webkit-inner-spin-button,
281
+ [type="number"]::-webkit-outer-spin-button {
348
282
  height: auto;
349
283
  }
350
284
 
351
285
  /**
352
- * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
- * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
354
- * (include `-moz` to future-proof).
286
+ * 1. Correct the odd appearance in Chrome and Safari.
287
+ * 2. Correct the outline style in Safari.
355
288
  */
356
289
 
357
- input[type="search"] {
290
+ [type="search"] {
358
291
  -webkit-appearance: textfield; /* 1 */
359
- -moz-box-sizing: content-box;
360
- -webkit-box-sizing: content-box; /* 2 */
361
- box-sizing: content-box;
292
+ outline-offset: -2px; /* 2 */
362
293
  }
363
294
 
364
295
  /**
365
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
366
- * Safari (but not Chrome) clips the cancel button when the search input has
367
- * padding (and `textfield` appearance).
296
+ * Remove the inner padding in Chrome and Safari on macOS.
368
297
  */
369
298
 
370
- input[type="search"]::-webkit-search-cancel-button,
371
- input[type="search"]::-webkit-search-decoration {
299
+ [type="search"]::-webkit-search-decoration {
372
300
  -webkit-appearance: none;
373
301
  }
374
302
 
375
303
  /**
376
- * Define consistent border, margin, and padding.
304
+ * 1. Correct the inability to style clickable types in iOS and Safari.
305
+ * 2. Change font properties to `inherit` in Safari.
377
306
  */
378
307
 
379
- fieldset {
380
- border: 1px solid #c0c0c0;
381
- margin: 0 2px;
382
- padding: 0.35em 0.625em 0.75em;
308
+ ::-webkit-file-upload-button {
309
+ -webkit-appearance: button; /* 1 */
310
+ font: inherit; /* 2 */
383
311
  }
384
312
 
385
- /**
386
- * 1. Correct `color` not being inherited in IE 8/9/10/11.
387
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
388
- */
389
-
390
- legend {
391
- border: 0; /* 1 */
392
- padding: 0; /* 2 */
393
- }
313
+ /* Interactive
314
+ ========================================================================== */
394
315
 
395
- /**
396
- * Remove default vertical scrollbar in IE 8/9/10/11.
316
+ /*
317
+ * Add the correct display in Edge, IE 10+, and Firefox.
397
318
  */
398
319
 
399
- textarea {
400
- overflow: auto;
320
+ details {
321
+ display: block;
401
322
  }
402
323
 
403
- /**
404
- * Don't inherit the `font-weight` (applied by a rule above).
405
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
324
+ /*
325
+ * Add the correct display in all browsers.
406
326
  */
407
327
 
408
- optgroup {
409
- font-weight: bold;
328
+ summary {
329
+ display: list-item;
410
330
  }
411
331
 
412
- /* Tables
332
+ /* Misc
413
333
  ========================================================================== */
414
334
 
415
335
  /**
416
- * Remove most spacing between table cells.
336
+ * Add the correct display in IE 10+.
417
337
  */
418
338
 
419
- table {
420
- border-collapse: collapse;
421
- border-spacing: 0;
339
+ template {
340
+ display: none;
422
341
  }
423
342
 
424
- td,
425
- th {
426
- padding: 0;
343
+ /**
344
+ * Add the correct display in IE 10.
345
+ */
346
+
347
+ [hidden] {
348
+ display: none;
427
349
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-14 00:00:00.000000000 Z
11
+ date: 2020-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -86,8 +86,10 @@ files:
86
86
  - _includes/css/custom.scss.liquid
87
87
  - _includes/css/just-the-docs.scss.liquid
88
88
  - _includes/fix_linenos.html
89
+ - _includes/footer_custom.html
89
90
  - _includes/head.html
90
91
  - _includes/head_custom.html
92
+ - _includes/header_custom.html
91
93
  - _includes/js/custom.js
92
94
  - _includes/nav.html
93
95
  - _includes/title.html
@@ -129,7 +131,6 @@ files:
129
131
  - _sass/utilities/utilities.scss
130
132
  - _sass/vendor/normalize.scss/README.md
131
133
  - _sass/vendor/normalize.scss/normalize.scss
132
- - _sass/vendor/normalize.scss/package.json
133
134
  - assets/css/just-the-docs-dark.scss
134
135
  - assets/css/just-the-docs-default.scss
135
136
  - assets/css/just-the-docs-light.scss
@@ -1,70 +0,0 @@
1
- {
2
- "_args": [
3
- [
4
- "normalize.scss",
5
- "/Users/pmarsceill/_projects/just-the-docs"
6
- ]
7
- ],
8
- "_from": "normalize.scss@*",
9
- "_id": "normalize.scss@0.1.0",
10
- "_inCache": true,
11
- "_installable": true,
12
- "_location": "/normalize.scss",
13
- "_nodeVersion": "0.10.32",
14
- "_npmUser": {
15
- "email": "alexguerrero1092@gmail.com",
16
- "name": "alexguerrero"
17
- },
18
- "_npmVersion": "2.0.2",
19
- "_phantomChildren": {},
20
- "_requested": {
21
- "name": "normalize.scss",
22
- "raw": "normalize.scss",
23
- "rawSpec": "",
24
- "scope": null,
25
- "spec": "*",
26
- "type": "range"
27
- },
28
- "_requiredBy": [
29
- "#DEV:/"
30
- ],
31
- "_resolved": "https://registry.npmjs.org/normalize.scss/-/normalize.scss-0.1.0.tgz",
32
- "_shasum": "4a21dc25bd4c019c857785f829b658aba2a8f9ab",
33
- "_shrinkwrap": null,
34
- "_spec": "normalize.scss",
35
- "_where": "/Users/pmarsceill/_projects/just-the-docs",
36
- "author": "",
37
- "bugs": {
38
- "url": "https://github.com/guerrero/normalize.scss/issues"
39
- },
40
- "dependencies": {},
41
- "description": "Normalize.scss as a node packaged module",
42
- "devDependencies": {},
43
- "directories": {},
44
- "dist": {
45
- "shasum": "4a21dc25bd4c019c857785f829b658aba2a8f9ab",
46
- "tarball": "https://registry.npmjs.org/normalize.scss/-/normalize.scss-0.1.0.tgz"
47
- },
48
- "files": [
49
- "normalize.scss"
50
- ],
51
- "gitHead": "d67d517e28615a873066438af1d4845c157c9baf",
52
- "homepage": "https://github.com/guerrero/normalize.scss",
53
- "license": "MIT",
54
- "maintainers": [
55
- {
56
- "name": "alexguerrero",
57
- "email": "alexguerrero1092@gmail.com"
58
- }
59
- ],
60
- "name": "normalize.scss",
61
- "optionalDependencies": {},
62
- "readme": "ERROR: No README data found!",
63
- "repository": {
64
- "type": "git",
65
- "url": "git://github.com/guerrero/normalize.scss.git"
66
- },
67
- "scripts": {},
68
- "style": "normalize.scss",
69
- "version": "0.1.0"
70
- }