just-the-docs 0.8.2 → 0.9.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
  SHA256:
3
- metadata.gz: a15da004d049b86d15dd69e15b26b4fdc3f89648f18c10a0887dcd74e11bbd33
4
- data.tar.gz: d6f522be1bd83f83c47d58da5a741742c041d145acf386a79d8df5b665128f71
3
+ metadata.gz: ce292fe4d8d3ed40611eb39229671ef8e38e86134e288d54c7e9f93412c4eedc
4
+ data.tar.gz: fc63da23207b3c16826bd634257efa1becc71abb2a2a3004a92f9136a52b04ad
5
5
  SHA512:
6
- metadata.gz: 02c386ac5304ac727920556e0e35fe779f9a4420e01621353415f01ff55ac3550c3de08e4b41fdc76096b3639ad89d03bac9b65b3017b16acc2e99f257750383
7
- data.tar.gz: 63f6eea9e2b23b5d16da9314ba740b41c6be7f02aef860934c6b4c7935f43db2ca149b620f10dbdafa4c2cd7b18393de84ec03359266f313dcf2ce5dd2466cbf
6
+ metadata.gz: 811ca2371d262ed21c7009f7fcb86811274bdb8d42e64960fe32be6adab4a63a734d3561a8b3011b24d3601c91516cbb70fd1533200d125cc1771a380fba0ca8
7
+ data.tar.gz: 33ee2161b4b212f16e42e2d1c858004a8c06860a69efe7d5ff673a8217bd44b5d657465bbe7336593f45adb040991ddb0a369aaba6104e10d00d80560e79e249
data/CHANGELOG.md CHANGED
@@ -23,6 +23,56 @@ Docs changes made since the latest release:
23
23
 
24
24
  - N/A
25
25
 
26
+ ## Release v0.9.0
27
+
28
+ Hi folks! This minor release adds a `nav_enabled` set of variables to enable/disable the navigation at a site, layout, and page level --- and uses that to add search and auxilary links to the `minimal` layout. In addition, it fixes `search-data.json` corruption with default layouts and some minor CSS/SCSS issues.
29
+
30
+ This release should be a straightforward upgrade for all users of Just the Docs. Thank you for your continued support!
31
+
32
+ ### Using Release `v0.9.0`
33
+
34
+ Users who have not pinned the theme version will be **automatically upgraded to `v0.8.0` the next time they build their site**.
35
+
36
+ To use this release explicitly as a remote theme:
37
+
38
+ ```yml
39
+ remote_theme: just-the-docs/just-the-docs@v0.9.0
40
+ ```
41
+
42
+ To use this version explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
43
+
44
+ ```ruby
45
+ gem "just-the-docs", "0.9.0"
46
+ ```
47
+
48
+ To use and pin a previous version of the theme, replace the `0.9.0` with the desired release tag.
49
+
50
+ ### New Features
51
+
52
+ - Added: `nav_enabled` site, layout, and page-level variable to selectively show or hide the side/mobile menu by [@kevinlin1] in [#1441]
53
+ - Added: site-wide search bar and auxiliary links to the `minimal` layout by [@kevinlin1] in [#1441]
54
+
55
+ ### Bugfixes
56
+
57
+ - Fixed: protect `search-data.json` file from front matter default for layout by [@mattxwang] in [#1468]
58
+ - Fixed: Sass mixed declarations by [@bobvandevijver] in [#1495]
59
+ - Fixed: redundant `monospace` in `pre`, `code`, `kbd`, `samp` reset by [@mattxwang] in [#1508]
60
+
61
+ ### Documentation
62
+
63
+ - Docs: Explained the `nav_enabled` variables as an alternative to using the minimal layout [@kevinlin1] in [#1441].
64
+
65
+ ### New Contributors
66
+
67
+ - [@bobvandevijver] made their first contribution in [#1495]
68
+
69
+ [@bobvandevijver]: https://github.com/bobvandevijver
70
+
71
+ [#1441]: https://github.com/just-the-docs/just-the-docs/pull/1441
72
+ [#1468]: https://github.com/just-the-docs/just-the-docs/pull/1468
73
+ [#1495]: https://github.com/just-the-docs/just-the-docs/pull/1495
74
+ [#1508]: https://github.com/just-the-docs/just-the-docs/pull/1508
75
+
26
76
  ## Release v0.8.2
27
77
 
28
78
  Hi everyone! This patch release fixes a bug where a default layout with unrestricted `scope` (`path: ""`) breaks JavaScript functionality. Users who do not use a default layout with unrestricted `scope` should not be affected. This should be a straightforward upgrade for all users. Thank you to [@pdmosses] for triaging and fixing the bug!
@@ -9,7 +9,13 @@ layout: table_wrappers
9
9
  <body>
10
10
  <a class="skip-to-main" href="#main-content">Skip to main content</a>
11
11
  {% include icons/icons.html %}
12
- {% include components/sidebar.html %}
12
+ {% if page.nav_enabled == true %}
13
+ {% include components/sidebar.html %}
14
+ {% elsif layout.nav_enabled == true and page.nav_enabled == nil %}
15
+ {% include components/sidebar.html %}
16
+ {% elsif site.nav_enabled != false and layout.nav_enabled == nil and page.nav_enabled == nil %}
17
+ {% include components/sidebar.html %}
18
+ {% endif %}
13
19
  <div class="main" id="top">
14
20
  {% include components/header.html %}
15
21
  <div class="main-content-wrap">
@@ -1,34 +1,6 @@
1
1
  ---
2
- layout: table_wrappers
2
+ layout: default
3
+ nav_enabled: false
3
4
  ---
4
5
 
5
- <!DOCTYPE html>
6
-
7
- <html lang="{{ site.lang | default: 'en-US' }}">
8
- {% include head.html %}
9
- <body>
10
- <a class="skip-to-main" href="#main-content">Skip to main content</a>
11
- {% include icons/icons.html %}
12
- <div class="main-content-wrap" id="top">
13
- {% include components/breadcrumbs.html %}
14
- <div id="main-content" class="main-content" role="main">
15
- {% if site.heading_anchors != false %}
16
- {% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#svg-link\"></use></svg>" anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %}
17
- {% else %}
18
- {{ content }}
19
- {% endif %}
20
-
21
- {% if page.has_children == true and page.has_toc != false %}
22
- {% include components/children_nav.html %}
23
- {% endif %}
24
-
25
- {% include components/footer.html %}
26
-
27
- </div>
28
- </div>
29
-
30
- {% if site.mermaid %}
31
- {% include components/mermaid.html %}
32
- {% endif %}
33
- </body>
34
- </html>
6
+ {{ content }}
data/_sass/base.scss CHANGED
@@ -10,9 +10,9 @@
10
10
  }
11
11
 
12
12
  html {
13
- @include fs-4;
14
-
15
13
  scroll-behavior: smooth;
14
+
15
+ @include fs-4;
16
16
  }
17
17
 
18
18
  body {
data/_sass/code.scss CHANGED
@@ -142,10 +142,10 @@ div.highlighter-rouge {
142
142
 
143
143
  // for AsciiDoc. we also need to fix the margins for its parent container.
144
144
  div.listingblock {
145
- @include scroll-and-spacing("div.content", "div.content > pre");
146
-
147
145
  margin-top: 0;
148
146
  margin-bottom: $sp-3;
147
+
148
+ @include scroll-and-spacing("div.content", "div.content > pre");
149
149
  }
150
150
 
151
151
  // {% highlight LANG %}...{% endhighlight %},
@@ -176,12 +176,12 @@ figure.highlight {
176
176
 
177
177
  td,
178
178
  pre {
179
- @include fs-2;
180
-
181
179
  min-width: 0;
182
180
  padding: 0;
183
181
  background-color: $code-background-color;
184
182
  border: 0;
183
+
184
+ @include fs-2;
185
185
  }
186
186
 
187
187
  td.gl {
data/_sass/labels.scss CHANGED
@@ -14,9 +14,9 @@
14
14
  text-transform: uppercase;
15
15
  vertical-align: middle;
16
16
  background-color: $blue-100;
17
- @include fs-2;
18
-
19
17
  border-radius: 12px;
18
+
19
+ @include fs-2;
20
20
  }
21
21
 
22
22
  .label-green:not(g) {
data/_sass/layout.scss CHANGED
@@ -19,32 +19,57 @@
19
19
  width: calc((100% - #{$nav-width + $content-width}) / 2 + #{$nav-width});
20
20
  min-width: $nav-width;
21
21
  }
22
+
23
+ & + .main {
24
+ @include mq(md) {
25
+ margin-left: $nav-width-md;
26
+ }
27
+
28
+ @include mq(lg) {
29
+ // stylelint-disable function-name-case
30
+ // disable for Max(), we want to use the CSS max() function
31
+ margin-left: Max(
32
+ #{$nav-width},
33
+ calc((100% - #{$nav-width + $content-width}) / 2 + #{$nav-width})
34
+ );
35
+ // stylelint-enable function-name-case
36
+ }
37
+
38
+ .main-header {
39
+ display: none;
40
+ background-color: $sidebar-color;
41
+
42
+ @include mq(md) {
43
+ display: flex;
44
+ background-color: $body-background-color;
45
+ }
46
+
47
+ &.nav-open {
48
+ display: block;
49
+
50
+ @include mq(md) {
51
+ display: flex;
52
+ }
53
+ }
54
+ }
55
+ }
22
56
  }
23
57
 
24
58
  .main {
59
+ margin: auto;
60
+
25
61
  @include mq(md) {
26
62
  position: relative;
27
63
  max-width: $content-width;
28
- margin-left: $nav-width-md;
29
- }
30
-
31
- @include mq(lg) {
32
- // stylelint-disable function-name-case
33
- // disable for Max(), we want to use the CSS max() function
34
- margin-left: Max(
35
- #{$nav-width},
36
- calc((100% - #{$nav-width + $content-width}) / 2 + #{$nav-width})
37
- );
38
- // stylelint-enable function-name-case
39
64
  }
40
65
  }
41
66
 
42
67
  .main-content-wrap {
43
- @include container;
44
-
45
68
  padding-top: $gutter-spacing-sm;
46
69
  padding-bottom: $gutter-spacing-sm;
47
70
 
71
+ @include container;
72
+
48
73
  @include mq(md) {
49
74
  padding-top: $gutter-spacing;
50
75
  padding-bottom: $gutter-spacing;
@@ -53,23 +78,12 @@
53
78
 
54
79
  .main-header {
55
80
  z-index: 0;
56
- display: none;
57
- background-color: $sidebar-color;
81
+ border-bottom: $border $border-color;
58
82
 
59
83
  @include mq(md) {
60
84
  display: flex;
61
85
  justify-content: space-between;
62
86
  height: $header-height;
63
- background-color: $body-background-color;
64
- border-bottom: $border $border-color;
65
- }
66
-
67
- &.nav-open {
68
- display: block;
69
-
70
- @include mq(md) {
71
- display: flex;
72
- }
73
87
  }
74
88
  }
75
89
 
@@ -112,8 +126,6 @@
112
126
  }
113
127
 
114
128
  .site-title {
115
- @include container;
116
-
117
129
  flex-grow: 1;
118
130
  display: flex;
119
131
  height: 100%;
@@ -121,6 +133,9 @@
121
133
  padding-top: $sp-3;
122
134
  padding-bottom: $sp-3;
123
135
  color: $body-heading-color;
136
+
137
+ @include container;
138
+
124
139
  @include fs-6;
125
140
 
126
141
  @include mq(md) {
@@ -186,14 +201,15 @@ body {
186
201
  // stylelint-enable selector-max-type
187
202
 
188
203
  .site-footer {
189
- @include container;
190
-
191
204
  position: absolute;
192
205
  bottom: 0;
193
206
  left: 0;
194
207
  padding-top: $sp-4;
195
208
  padding-bottom: $sp-4;
196
209
  color: $grey-dk-000;
210
+
211
+ @include container;
212
+
197
213
  @include fs-2;
198
214
 
199
215
  @include mq(md) {
@@ -8,11 +8,11 @@
8
8
  list-style: none;
9
9
 
10
10
  .nav-list-item {
11
- @include fs-4;
12
-
13
11
  position: relative;
14
12
  margin: 0;
15
13
 
14
+ @include fs-4;
15
+
16
16
  @include mq(md) {
17
17
  @include fs-3;
18
18
  }
@@ -1,5 +1,7 @@
1
1
  @mixin fs-1 {
2
- font-size: $font-size-1 !important;
2
+ & {
3
+ font-size: $font-size-1 !important;
4
+ }
3
5
 
4
6
  @include mq(sm) {
5
7
  font-size: $font-size-1-sm !important;
@@ -7,7 +9,9 @@
7
9
  }
8
10
 
9
11
  @mixin fs-2 {
10
- font-size: $font-size-2 !important;
12
+ & {
13
+ font-size: $font-size-2 !important;
14
+ }
11
15
 
12
16
  @include mq(sm) {
13
17
  font-size: $font-size-3 !important;
@@ -15,7 +19,9 @@
15
19
  }
16
20
 
17
21
  @mixin fs-3 {
18
- font-size: $font-size-3 !important;
22
+ & {
23
+ font-size: $font-size-3 !important;
24
+ }
19
25
 
20
26
  @include mq(sm) {
21
27
  font-size: $font-size-4 !important;
@@ -23,7 +29,9 @@
23
29
  }
24
30
 
25
31
  @mixin fs-4 {
26
- font-size: $font-size-4 !important;
32
+ & {
33
+ font-size: $font-size-4 !important;
34
+ }
27
35
 
28
36
  @include mq(sm) {
29
37
  font-size: $font-size-5 !important;
@@ -31,7 +39,9 @@
31
39
  }
32
40
 
33
41
  @mixin fs-5 {
34
- font-size: $font-size-5 !important;
42
+ & {
43
+ font-size: $font-size-5 !important;
44
+ }
35
45
 
36
46
  @include mq(sm) {
37
47
  font-size: $font-size-6 !important;
@@ -39,7 +49,9 @@
39
49
  }
40
50
 
41
51
  @mixin fs-6 {
42
- font-size: $font-size-6 !important;
52
+ & {
53
+ font-size: $font-size-6 !important;
54
+ }
43
55
 
44
56
  @include mq(sm) {
45
57
  font-size: $font-size-7 !important;
@@ -48,8 +60,10 @@
48
60
  }
49
61
 
50
62
  @mixin fs-7 {
51
- font-size: $font-size-7 !important;
52
- line-height: $body-heading-line-height;
63
+ & {
64
+ font-size: $font-size-7 !important;
65
+ line-height: $body-heading-line-height;
66
+ }
53
67
 
54
68
  @include mq(sm) {
55
69
  font-size: $font-size-8 !important;
@@ -57,8 +71,10 @@
57
71
  }
58
72
 
59
73
  @mixin fs-8 {
60
- font-size: $font-size-8 !important;
61
- line-height: $body-heading-line-height;
74
+ & {
75
+ font-size: $font-size-8 !important;
76
+ line-height: $body-heading-line-height;
77
+ }
62
78
 
63
79
  @include mq(sm) {
64
80
  font-size: $font-size-9 !important;
@@ -66,8 +82,10 @@
66
82
  }
67
83
 
68
84
  @mixin fs-9 {
69
- font-size: $font-size-9 !important;
70
- line-height: $body-heading-line-height;
85
+ & {
86
+ font-size: $font-size-9 !important;
87
+ line-height: $body-heading-line-height;
88
+ }
71
89
 
72
90
  @include mq(sm) {
73
91
  font-size: $font-size-10 !important;
@@ -75,8 +93,10 @@
75
93
  }
76
94
 
77
95
  @mixin fs-10 {
78
- font-size: $font-size-10 !important;
79
- line-height: $body-heading-line-height;
96
+ & {
97
+ font-size: $font-size-10 !important;
98
+ line-height: $body-heading-line-height;
99
+ }
80
100
 
81
101
  @include mq(sm) {
82
102
  font-size: $font-size-10-sm !important;
data/_sass/tables.scss CHANGED
@@ -21,14 +21,14 @@ table {
21
21
 
22
22
  th,
23
23
  td {
24
- @include fs-3;
25
-
26
24
  min-width: 7.5rem;
27
25
  padding: $sp-2 $sp-3;
28
26
  background-color: $table-background-color;
29
27
  border-bottom: $border rgba($border-color, 0.5);
30
28
  border-left: $border $border-color;
31
29
 
30
+ @include fs-3;
31
+
32
32
  &:first-of-type {
33
33
  border-left: 0;
34
34
  }
@@ -3,9 +3,9 @@
3
3
 
4
4
  h1,
5
5
  .text-alpha {
6
- @include fs-8;
7
-
8
6
  font-weight: 300;
7
+
8
+ @include fs-8;
9
9
  }
10
10
 
11
11
  h2,
@@ -21,11 +21,11 @@ h3,
21
21
 
22
22
  h4,
23
23
  .text-delta {
24
- @include fs-2;
25
-
26
24
  font-weight: 400;
27
25
  text-transform: uppercase;
28
26
  letter-spacing: 0.1em;
27
+
28
+ @include fs-2;
29
29
  }
30
30
 
31
31
  h4 code {
@@ -5,198 +5,261 @@ pre.highlight {
5
5
  background: #31343f;
6
6
  color: #dee2f7;
7
7
  }
8
+
8
9
  .highlight pre {
9
10
  background: #31343f;
10
11
  }
12
+
11
13
  .highlight .hll {
12
14
  background: #31343f;
13
15
  }
16
+
14
17
  .highlight .c {
15
18
  color: #63677e;
16
19
  font-style: italic;
17
20
  }
21
+
18
22
  .highlight .err {
19
23
  color: #960050;
20
24
  background-color: #1e0010;
21
25
  }
26
+
22
27
  .highlight .k {
23
28
  color: #e19ef5;
24
29
  }
30
+
25
31
  .highlight .l {
26
32
  color: #a3eea0;
27
33
  }
34
+
28
35
  .highlight .n {
29
36
  color: #dee2f7;
30
37
  }
38
+
31
39
  .highlight .o {
32
40
  color: #dee2f7;
33
41
  }
42
+
34
43
  .highlight .p {
35
44
  color: #dee2f7;
36
45
  }
46
+
37
47
  .highlight .cm {
38
48
  color: #63677e;
39
49
  font-style: italic;
40
50
  }
51
+
41
52
  .highlight .cp {
42
53
  color: #63677e;
43
54
  font-style: italic;
44
55
  }
56
+
45
57
  .highlight .c1 {
46
58
  color: #63677e;
47
59
  font-style: italic;
48
60
  }
61
+
49
62
  .highlight .cs {
50
63
  color: #63677e;
51
64
  font-style: italic;
52
65
  }
66
+
53
67
  .highlight .ge {
54
68
  font-style: italic;
55
69
  }
70
+
56
71
  .highlight .gs {
57
72
  font-weight: 700;
58
73
  }
74
+
59
75
  .highlight .kc {
60
76
  color: #e19ef5;
61
77
  }
78
+
62
79
  .highlight .kd {
63
80
  color: #e19ef5;
64
81
  }
82
+
65
83
  .highlight .kn {
66
84
  color: #e19ef5;
67
85
  }
86
+
68
87
  .highlight .kp {
69
88
  color: #e19ef5;
70
89
  }
90
+
71
91
  .highlight .kr {
72
92
  color: #e19ef5;
73
93
  }
94
+
74
95
  .highlight .kt {
75
96
  color: #e19ef5;
76
97
  }
98
+
77
99
  .highlight .ld {
78
100
  color: #a3eea0;
79
101
  }
102
+
80
103
  .highlight .m {
81
104
  color: #eddc96;
82
105
  }
106
+
83
107
  .highlight .s {
84
108
  color: #a3eea0;
85
109
  }
110
+
86
111
  .highlight .na {
87
112
  color: #eddc96;
88
113
  }
114
+
89
115
  .highlight .nb {
90
116
  color: #fdce68;
91
117
  }
118
+
92
119
  .highlight .nc {
93
120
  color: #fdce68;
94
121
  }
122
+
95
123
  .highlight .no {
96
124
  color: #fdce68;
97
125
  }
126
+
98
127
  .highlight .nd {
99
128
  color: #fdce68;
100
129
  }
130
+
101
131
  .highlight .ni {
102
132
  color: #fdce68;
103
133
  }
134
+
104
135
  .highlight .ne {
105
136
  color: #fdce68;
106
137
  }
138
+
107
139
  .highlight .nf {
108
140
  color: #dee2f7;
109
141
  }
142
+
110
143
  .highlight .nl {
111
144
  color: #fdce68;
112
145
  }
146
+
113
147
  .highlight .nn {
114
148
  color: #dee2f7;
115
149
  }
150
+
116
151
  .highlight .nx {
117
152
  color: #dee2f7;
118
153
  }
154
+
119
155
  .highlight .py {
120
156
  color: #fdce68;
121
157
  }
158
+
122
159
  .highlight .nt {
123
160
  color: #f9867b;
124
161
  }
162
+
125
163
  .highlight .nv {
126
164
  color: #fdce68;
127
165
  }
166
+
128
167
  .highlight .ow {
129
168
  font-weight: 700;
130
169
  }
170
+
131
171
  .highlight .w {
132
172
  color: #f8f8f2;
133
173
  }
174
+
134
175
  .highlight .mf {
135
176
  color: #eddc96;
136
177
  }
178
+
137
179
  .highlight .mh {
138
180
  color: #eddc96;
139
181
  }
182
+
140
183
  .highlight .mi {
141
184
  color: #eddc96;
142
185
  }
186
+
143
187
  .highlight .mo {
144
188
  color: #eddc96;
145
189
  }
190
+
146
191
  .highlight .sb {
147
192
  color: #a3eea0;
148
193
  }
194
+
149
195
  .highlight .sc {
150
196
  color: #a3eea0;
151
197
  }
198
+
152
199
  .highlight .sd {
153
200
  color: #a3eea0;
154
201
  }
202
+
155
203
  .highlight .s2 {
156
204
  color: #a3eea0;
157
205
  }
206
+
158
207
  .highlight .se {
159
208
  color: #a3eea0;
160
209
  }
210
+
161
211
  .highlight .sh {
162
212
  color: #a3eea0;
163
213
  }
214
+
164
215
  .highlight .si {
165
216
  color: #a3eea0;
166
217
  }
218
+
167
219
  .highlight .sx {
168
220
  color: #a3eea0;
169
221
  }
222
+
170
223
  .highlight .sr {
171
224
  color: #7be2f9;
172
225
  }
226
+
173
227
  .highlight .s1 {
174
228
  color: #a3eea0;
175
229
  }
230
+
176
231
  .highlight .ss {
177
232
  color: #7be2f9;
178
233
  }
234
+
179
235
  .highlight .bp {
180
236
  color: #fdce68;
181
237
  }
238
+
182
239
  .highlight .vc {
183
240
  color: #fdce68;
184
241
  }
242
+
185
243
  .highlight .vg {
186
244
  color: #fdce68;
187
245
  }
246
+
188
247
  .highlight .vi {
189
248
  color: #f9867b;
190
249
  }
250
+
191
251
  .highlight .il {
192
252
  color: #eddc96;
193
253
  }
254
+
194
255
  .highlight .gu {
195
256
  color: #75715e;
196
257
  }
258
+
197
259
  .highlight .gd {
198
260
  color: #f92672;
199
261
  }
262
+
200
263
  .highlight .gi {
201
264
  color: #a6e22e;
202
265
  }
@@ -5,204 +5,269 @@ pre.highlight {
5
5
  background: #f9f9f9;
6
6
  color: #383942;
7
7
  }
8
+
8
9
  .highlight pre {
9
10
  background: #f9f9f9;
10
11
  }
12
+
11
13
  .highlight .hll {
12
14
  background: #f9f9f9;
13
15
  }
16
+
14
17
  .highlight .c {
15
18
  color: #9fa0a6;
16
19
  font-style: italic;
17
20
  }
21
+
18
22
  .highlight .err {
19
23
  color: #fff;
20
24
  background-color: #e05151;
21
25
  }
26
+
22
27
  .highlight .k {
23
28
  color: #a625a4;
24
29
  }
30
+
25
31
  .highlight .l {
26
32
  color: #50a04f;
27
33
  }
34
+
28
35
  .highlight .n {
29
36
  color: #383942;
30
37
  }
38
+
31
39
  .highlight .o {
32
40
  color: #383942;
33
41
  }
42
+
34
43
  .highlight .p {
35
44
  color: #383942;
36
45
  }
46
+
37
47
  .highlight .cm {
38
48
  color: #9fa0a6;
39
49
  font-style: italic;
40
50
  }
51
+
41
52
  .highlight .cp {
42
53
  color: #9fa0a6;
43
54
  font-style: italic;
44
55
  }
56
+
45
57
  .highlight .c1 {
46
58
  color: #9fa0a6;
47
59
  font-style: italic;
48
60
  }
61
+
49
62
  .highlight .cs {
50
63
  color: #9fa0a6;
51
64
  font-style: italic;
52
65
  }
66
+
53
67
  .highlight .ge {
54
68
  font-style: italic;
55
69
  }
70
+
56
71
  .highlight .gs {
57
72
  font-weight: 700;
58
73
  }
74
+
59
75
  .highlight .kc {
60
76
  color: #a625a4;
61
77
  }
78
+
62
79
  .highlight .kd {
63
80
  color: #a625a4;
64
81
  }
82
+
65
83
  .highlight .kn {
66
84
  color: #a625a4;
67
85
  }
86
+
68
87
  .highlight .kp {
69
88
  color: #a625a4;
70
89
  }
90
+
71
91
  .highlight .kr {
72
92
  color: #a625a4;
73
93
  }
94
+
74
95
  .highlight .kt {
75
96
  color: #a625a4;
76
97
  }
98
+
77
99
  .highlight .ld {
78
100
  color: #50a04f;
79
101
  }
102
+
80
103
  .highlight .m {
81
104
  color: #b66a00;
82
105
  }
106
+
83
107
  .highlight .s {
84
108
  color: #50a04f;
85
109
  }
110
+
86
111
  .highlight .na {
87
112
  color: #b66a00;
88
113
  }
114
+
89
115
  .highlight .nb {
90
116
  color: #ca7601;
91
117
  }
118
+
92
119
  .highlight .nc {
93
120
  color: #ca7601;
94
121
  }
122
+
95
123
  .highlight .no {
96
124
  color: #ca7601;
97
125
  }
126
+
98
127
  .highlight .nd {
99
128
  color: #ca7601;
100
129
  }
130
+
101
131
  .highlight .ni {
102
132
  color: #ca7601;
103
133
  }
134
+
104
135
  .highlight .ne {
105
136
  color: #ca7601;
106
137
  }
138
+
107
139
  .highlight .nf {
108
140
  color: #383942;
109
141
  }
142
+
110
143
  .highlight .nl {
111
144
  color: #ca7601;
112
145
  }
146
+
113
147
  .highlight .nn {
114
148
  color: #383942;
115
149
  }
150
+
116
151
  .highlight .nx {
117
152
  color: #383942;
118
153
  }
154
+
119
155
  .highlight .py {
120
156
  color: #ca7601;
121
157
  }
158
+
122
159
  .highlight .nt {
123
160
  color: #e35549;
124
161
  }
162
+
125
163
  .highlight .nv {
126
164
  color: #ca7601;
127
165
  }
166
+
128
167
  .highlight .ow {
129
168
  font-weight: 700;
130
169
  }
170
+
131
171
  .highlight .w {
132
172
  color: #f8f8f2;
133
173
  }
174
+
134
175
  .highlight .mf {
135
176
  color: #b66a00;
136
177
  }
178
+
137
179
  .highlight .mh {
138
180
  color: #b66a00;
139
181
  }
182
+
140
183
  .highlight .mi {
141
184
  color: #b66a00;
142
185
  }
186
+
143
187
  .highlight .mo {
144
188
  color: #b66a00;
145
189
  }
190
+
146
191
  .highlight .sb {
147
192
  color: #50a04f;
148
193
  }
194
+
149
195
  .highlight .sc {
150
196
  color: #50a04f;
151
197
  }
198
+
152
199
  .highlight .sd {
153
200
  color: #50a04f;
154
201
  }
202
+
155
203
  .highlight .s2 {
156
204
  color: #50a04f;
157
205
  }
206
+
158
207
  .highlight .se {
159
208
  color: #50a04f;
160
209
  }
210
+
161
211
  .highlight .sh {
162
212
  color: #50a04f;
163
213
  }
214
+
164
215
  .highlight .si {
165
216
  color: #50a04f;
166
217
  }
218
+
167
219
  .highlight .sx {
168
220
  color: #50a04f;
169
221
  }
222
+
170
223
  .highlight .sr {
171
224
  color: #0083bb;
172
225
  }
226
+
173
227
  .highlight .s1 {
174
228
  color: #50a04f;
175
229
  }
230
+
176
231
  .highlight .ss {
177
232
  color: #0083bb;
178
233
  }
234
+
179
235
  .highlight .bp {
180
236
  color: #ca7601;
181
237
  }
238
+
182
239
  .highlight .vc {
183
240
  color: #ca7601;
184
241
  }
242
+
185
243
  .highlight .vg {
186
244
  color: #ca7601;
187
245
  }
246
+
188
247
  .highlight .vi {
189
248
  color: #e35549;
190
249
  }
250
+
191
251
  .highlight .il {
192
252
  color: #b66a00;
193
253
  }
254
+
194
255
  .highlight .gu {
195
256
  color: #75715e;
196
257
  }
258
+
197
259
  .highlight .gd {
198
260
  color: #e05151;
199
261
  }
262
+
200
263
  .highlight .gi {
201
264
  color: #43d089;
202
265
  }
266
+
203
267
  .highlight .language-json .w + .s2 {
204
268
  color: #e35549;
205
269
  }
270
+
206
271
  .highlight .language-json .kc {
207
272
  color: #0083bb;
208
273
  }
@@ -10,7 +10,7 @@
10
10
 
11
11
  html {
12
12
  line-height: 1.15; /* 1 */
13
- -webkit-text-size-adjust: 100%; /* 2 */
13
+ text-size-adjust: 100%; /* 2 */
14
14
  }
15
15
 
16
16
  /* Sections
@@ -62,7 +62,7 @@ hr {
62
62
  */
63
63
 
64
64
  pre {
65
- font-family: monospace, monospace; /* 1 */
65
+ font-family: monospace; /* 1 */
66
66
  font-size: 1em; /* 2 */
67
67
  }
68
68
 
@@ -105,7 +105,7 @@ strong {
105
105
  code,
106
106
  kbd,
107
107
  samp {
108
- font-family: monospace, monospace; /* 1 */
108
+ font-family: monospace; /* 1 */
109
109
  font-size: 1em; /* 2 */
110
110
  }
111
111
 
@@ -198,7 +198,7 @@ button,
198
198
  [type="button"],
199
199
  [type="reset"],
200
200
  [type="submit"] {
201
- -webkit-appearance: button;
201
+ appearance: button;
202
202
  }
203
203
 
204
204
  /**
@@ -290,7 +290,7 @@ textarea {
290
290
  */
291
291
 
292
292
  [type="search"] {
293
- -webkit-appearance: textfield; /* 1 */
293
+ appearance: textfield; /* 1 */
294
294
  outline-offset: -2px; /* 2 */
295
295
  }
296
296
 
@@ -299,7 +299,7 @@ textarea {
299
299
  */
300
300
 
301
301
  [type="search"]::-webkit-search-decoration {
302
- -webkit-appearance: none;
302
+ appearance: none;
303
303
  }
304
304
 
305
305
  /**
@@ -308,7 +308,7 @@ textarea {
308
308
  */
309
309
 
310
310
  ::-webkit-file-upload-button {
311
- -webkit-appearance: button; /* 1 */
311
+ appearance: button; /* 1 */
312
312
  font: inherit; /* 2 */
313
313
  }
314
314
 
@@ -556,12 +556,14 @@ function activateNav() {
556
556
  // Document ready
557
557
 
558
558
  jtd.onReady(function(){
559
- initNav();
559
+ if (document.getElementById('site-nav')) {
560
+ initNav();
561
+ activateNav();
562
+ scrollNav();
563
+ }
560
564
  {%- if site.search_enabled != false %}
561
565
  initSearch();
562
566
  {%- endif %}
563
- activateNav();
564
- scrollNav();
565
567
  });
566
568
 
567
569
  // Copy button on code
@@ -1,4 +1,5 @@
1
1
  ---
2
+ layout: null
2
3
  permalink: /assets/js/search-data.json
3
4
  ---
4
5
  {
@@ -9,6 +9,7 @@ namespace :search do
9
9
 
10
10
  File.open('assets/js/zzzz-search-data.json', 'w') do |f|
11
11
  f.puts '---
12
+ layout: null
12
13
  permalink: /assets/js/search-data.json
13
14
  ---
14
15
  {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-04-01 00:00:00.000000000 Z
12
+ date: 2024-08-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
210
210
  - !ruby/object:Gem::Version
211
211
  version: '0'
212
212
  requirements: []
213
- rubygems_version: 3.4.10
213
+ rubygems_version: 3.5.11
214
214
  signing_key:
215
215
  specification_version: 4
216
216
  summary: A modern, highly customizable, and responsive Jekyll theme for documentation