buckram 1.8.3 → 1.8.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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +15 -0
- package/assets/styles/components/elements/_tables.scss +6 -0
- package/assets/styles/components/specials/_footnotes.scss +8 -4
- package/assets/styles/components/specials/_glossaryterms.scss +1 -0
- package/assets/styles/variables/_specials.scss +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.5](https://github.com/pressbooks/buckram/compare/v1.8.4...v1.8.5) (2025-03-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* allow glossary terms to be copy/pasted by Firefox users ([#373](https://github.com/pressbooks/buckram/issues/373)) ([a19fc78](https://github.com/pressbooks/buckram/commit/a19fc78d9d7bc1d8058d3976146f4f3a0ce4978e))
|
|
9
|
+
* nested paragraphs font size in tables ([#375](https://github.com/pressbooks/buckram/issues/375)) ([39bd9ad](https://github.com/pressbooks/buckram/commit/39bd9ad339ae84a96ef7e11413cf60ce6a89ab8a))
|
|
10
|
+
|
|
11
|
+
## [1.8.4](https://github.com/pressbooks/buckram/compare/v1.8.3...v1.8.4) (2024-10-21)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* mathjax class scope ([#367](https://github.com/pressbooks/buckram/issues/367)) ([711a842](https://github.com/pressbooks/buckram/commit/711a8428fd844ae79d0bcc27f0035de11d634c5f))
|
|
17
|
+
|
|
3
18
|
## [1.8.3](https://github.com/pressbooks/buckram/compare/v1.8.2...v1.8.3) (2024-10-07)
|
|
4
19
|
|
|
5
20
|
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
footnote-style-position: outside;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
.footnotes {
|
|
45
|
+
.mathjax {
|
|
46
|
+
padding-bottom: $footnote-mathjax-padding-bottom;
|
|
47
|
+
}
|
|
47
48
|
}
|
|
48
|
-
|
|
49
49
|
|
|
50
50
|
// Footnote & Endnote number markers (in body text)
|
|
51
51
|
|
|
@@ -79,6 +79,10 @@
|
|
|
79
79
|
|
|
80
80
|
.footnotes {
|
|
81
81
|
font-size: if-map-get($footnote-font-size, $type);
|
|
82
|
+
|
|
83
|
+
.mathjax {
|
|
84
|
+
padding-bottom: $footnote-mathjax-padding-bottom;
|
|
85
|
+
}
|
|
82
86
|
}
|
|
83
87
|
}
|
|
84
88
|
|
|
@@ -164,7 +164,6 @@ $footnote-blockquote-font-size: 0.95em !default;
|
|
|
164
164
|
/// @type String
|
|
165
165
|
$footnote-number-marker-font-size: $sup-sub-font-size !default;
|
|
166
166
|
$footnote-number-marker-line-height: $sup-sub-line-height !default;
|
|
167
|
-
$footnote-mathjax-width: 3em !default;
|
|
168
167
|
$footnote-mathjax-padding-bottom: 0.4em !default;
|
|
169
168
|
|
|
170
169
|
// Endnotes
|