ultimate-jekyll-manager 1.2.1 → 1.2.3
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.
- package/CHANGELOG.md +19 -0
- package/dist/assets/css/pages/blog/post.scss +45 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
---
|
|
18
|
+
## [1.2.3] - 2026-05-19
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **Markdown table styles in blog posts** — `article .blog-post-content table` in `src/assets/css/pages/blog/post.scss` now renders any plain `| col | col |` markdown table with a rounded outer border, uppercase letter-spaced thead on a tinted background, zebra-striped tbody rows, hover highlight, and tighter padding/font-size on mobile (≤575.98px).
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- **Tidied heading-margin rule** in `src/assets/css/pages/blog/post.scss` — collapsed `h1..h6` onto one selector and removed the commented-out `:first-child` reset.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
## [1.2.2] - 2026-05-18
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- **`docs/<topic>.md` deep references** — 17 new files referenced by the v1.2.0 CLAUDE.md reorg that hadn't been committed yet: `ads.md`, `analytics.md`, `appearance.md`, `assets.md`, `audit.md`, `css.md`, `icons.md`, `images.md`, `javascript-libraries.md`, `jekyll-plugin.md`, `layouts-and-pages.md`, `lazy-loading.md`, `local-development.md`, `page-loading.md`, `project-structure.md`, `seo.md`, `xss-prevention.md`. Restores parity with the cross-links already shipped in [CLAUDE.md](CLAUDE.md).
|
|
34
|
+
- **`src/defaults/docs/README.md`, `src/defaults/test/README.md`, `src/defaults/CHANGELOG.md`** — consumer-project scaffolding files distributed via the `defaults` gulp task.
|
|
35
|
+
|
|
17
36
|
---
|
|
18
37
|
## [1.2.1] - 2026-05-18
|
|
19
38
|
|
|
@@ -3,20 +3,53 @@
|
|
|
3
3
|
* Styles specific to individual blog post pages
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
// Article content styles
|
|
7
6
|
article .blog-post-content {
|
|
8
|
-
|
|
9
|
-
h1,
|
|
10
|
-
h2,
|
|
11
|
-
h3,
|
|
12
|
-
h4,
|
|
13
|
-
h5,
|
|
14
|
-
h6 {
|
|
7
|
+
h1, h2, h3, h4, h5, h6 {
|
|
15
8
|
margin-top: 2.5rem;
|
|
16
9
|
}
|
|
17
10
|
|
|
18
|
-
//
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
11
|
+
// Markdown tables — every plain `| col | col |` table gets the same look.
|
|
12
|
+
table {
|
|
13
|
+
width: 100%;
|
|
14
|
+
margin: 1.5rem 0 2rem;
|
|
15
|
+
border-collapse: separate;
|
|
16
|
+
border-spacing: 0;
|
|
17
|
+
border: 1px solid var(--bs-border-color);
|
|
18
|
+
border-radius: var(--bs-border-radius-lg, 0.5rem);
|
|
19
|
+
overflow: hidden; // clip cell backgrounds against the rounded corners
|
|
20
|
+
font-size: 0.95rem;
|
|
21
|
+
line-height: 1.5;
|
|
22
|
+
|
|
23
|
+
th, td {
|
|
24
|
+
padding: 0.85rem 1rem;
|
|
25
|
+
vertical-align: top;
|
|
26
|
+
border-top: 1px solid var(--bs-border-color);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// First-row cells skip the top border — the rounded outer border owns that edge.
|
|
30
|
+
tr:first-child th,
|
|
31
|
+
tr:first-child td {
|
|
32
|
+
border-top: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
thead {
|
|
36
|
+
background-color: color-mix(in srgb, var(--bs-emphasis-color) 12%, var(--bs-body-bg));
|
|
37
|
+
th {
|
|
38
|
+
font-weight: 700;
|
|
39
|
+
text-align: left;
|
|
40
|
+
text-transform: uppercase;
|
|
41
|
+
letter-spacing: 0.04em;
|
|
42
|
+
font-size: 0.8rem;
|
|
43
|
+
border-bottom: 2px solid var(--bs-border-color);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
tbody tr:nth-of-type(even) { background-color: var(--bs-tertiary-bg); }
|
|
48
|
+
tbody tr:hover { background-color: var(--bs-secondary-bg); }
|
|
49
|
+
|
|
50
|
+
@media (max-width: 575.98px) {
|
|
51
|
+
font-size: 0.85rem;
|
|
52
|
+
th, td { padding: 0.6rem 0.75rem; }
|
|
53
|
+
}
|
|
54
|
+
}
|
|
22
55
|
}
|