jekyll-theme-monty 1.2.3 → 1.2.5
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/CHANGELOG.md +16 -0
- data/_includes/footer.html +2 -2
- data/_sass/main.scss +7 -6
- data/_sass/syntax.scss +4 -2
- data/_sass/variables.scss +0 -4
- 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: ced421ab2178d6228e0627d50eb5c43d776adf08c0253ecbf391c1d51d12bc61
|
4
|
+
data.tar.gz: 02b43b0dbf576be39498485b327c324d563959f40a21da2135e0e6719d3510d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24e063e852d9772021a1425456f20d41e80e1158c6c293fa073066a2226297dc8e3ee25fa1b52dc1e88692c2e3fbc384da9f95a7abfada5b293d504241578c0b
|
7
|
+
data.tar.gz: fbe0cca75614b85bee9be35a6bc02d4c4cce7faac1f91b6d2ff9062405de928b6c0858ae0d3252433655d12d099a30698caadd58bfd5d0cb07c730d9b7aa466e
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.2.5]
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
|
11
|
+
- Truncating in prev+next footer navigation
|
12
|
+
- Padding in code snippets to match padding in blockquotes
|
13
|
+
- Baseline alignments between Jost and Drafting
|
14
|
+
- Scrollbar styling in code snippets after padding decrease
|
15
|
+
|
16
|
+
## [1.2.4]
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
- Change gap size for figures
|
21
|
+
- Change max width for images to percent
|
22
|
+
|
7
23
|
## [1.2.3]
|
8
24
|
|
9
25
|
### Fixed
|
data/_includes/footer.html
CHANGED
@@ -3,13 +3,13 @@
|
|
3
3
|
{% if page.previous.url %}
|
4
4
|
<li class="prev">
|
5
5
|
<a href="{{ page.previous.url | relative_url }}"
|
6
|
-
>❮ <span>{{page.previous.title | truncate:
|
6
|
+
>❮ <span>{{page.previous.title | truncate: 32}}</span>
|
7
7
|
</a>
|
8
8
|
</li>
|
9
9
|
{% endif %} {% if page.next.url %}
|
10
10
|
<li class="next">
|
11
11
|
<a href="{{ page.next.url | relative_url }}"
|
12
|
-
><span>{{page.next.title | truncate:
|
12
|
+
><span>{{page.next.title | truncate: 32}}</span> ❯
|
13
13
|
</a>
|
14
14
|
</li>
|
15
15
|
{% endif %}
|
data/_sass/main.scss
CHANGED
@@ -3,7 +3,7 @@ html {
|
|
3
3
|
color: $primary;
|
4
4
|
font-family: "Jost";
|
5
5
|
line-height: 1.5;
|
6
|
-
max-width:
|
6
|
+
max-width: 80ch;
|
7
7
|
padding: 16px;
|
8
8
|
}
|
9
9
|
:is(h2, h3, h4, h5, h6) {
|
@@ -18,7 +18,7 @@ footer ul {
|
|
18
18
|
align-items: left;
|
19
19
|
display: flex;
|
20
20
|
flex-wrap: wrap;
|
21
|
-
gap:
|
21
|
+
gap: 1em;
|
22
22
|
list-style-type: none;
|
23
23
|
margin: 0;
|
24
24
|
padding: 0;
|
@@ -38,19 +38,20 @@ footer hr {
|
|
38
38
|
|
39
39
|
// Images
|
40
40
|
img {
|
41
|
-
max-width:
|
42
|
-
max-height: calc(0.6 *
|
41
|
+
max-width: 100%;
|
42
|
+
max-height: calc(0.6 * 80ch);
|
43
43
|
}
|
44
44
|
|
45
45
|
figure {
|
46
46
|
display: flex;
|
47
47
|
flex-direction: column;
|
48
48
|
align-items: center;
|
49
|
-
gap:
|
49
|
+
gap: 0.5em;
|
50
|
+
margin: auto;
|
50
51
|
}
|
51
52
|
|
52
53
|
figure figcaption {
|
53
|
-
max-width:
|
54
|
+
max-width: 80%;
|
54
55
|
font-size: 95%;
|
55
56
|
}
|
56
57
|
|
data/_sass/syntax.scss
CHANGED
@@ -3,14 +3,16 @@ code {
|
|
3
3
|
font-family: "Drafting";
|
4
4
|
font-size: 0.8em;
|
5
5
|
padding: 0.3em;
|
6
|
-
vertical-align: text-bottom;
|
7
6
|
}
|
8
7
|
pre {
|
9
8
|
border-left: $border;
|
10
9
|
max-height: 400px;
|
11
10
|
overflow: auto;
|
12
|
-
padding: $indentation;
|
11
|
+
padding-left: $indentation;
|
13
12
|
position: relative;
|
13
|
+
background-color: transparent;
|
14
|
+
scrollbar-width: thin;
|
15
|
+
scrollbar-color: rgba(100, 100, 100, 0.5) transparent;
|
14
16
|
}
|
15
17
|
|
16
18
|
// Rouge theme igorpro syntax highlighting
|
data/_sass/variables.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-monty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- brolun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|