buckram 1.10.2 → 1.10.4
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/.idea/buckram.iml +8 -0
- package/.idea/modules.xml +8 -0
- package/.idea/php.xml +19 -0
- package/.idea/vcs.xml +6 -0
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/assets/styles/components/elements/_links.scss +2 -7
- package/assets/styles/components/toc/_generic.scss +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
package/.idea/php.xml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="MessDetectorOptionsConfiguration">
|
|
4
|
+
<option name="transferred" value="true" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="PHPCSFixerOptionsConfiguration">
|
|
7
|
+
<option name="transferred" value="true" />
|
|
8
|
+
</component>
|
|
9
|
+
<component name="PHPCodeSnifferOptionsConfiguration">
|
|
10
|
+
<option name="highlightLevel" value="WARNING" />
|
|
11
|
+
<option name="transferred" value="true" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="PhpStanOptionsConfiguration">
|
|
14
|
+
<option name="transferred" value="true" />
|
|
15
|
+
</component>
|
|
16
|
+
<component name="PsalmOptionsConfiguration">
|
|
17
|
+
<option name="transferred" value="true" />
|
|
18
|
+
</component>
|
|
19
|
+
</project>
|
package/.idea/vcs.xml
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.10.4](https://github.com/pressbooks/buckram/compare/v1.10.3...v1.10.4) (2026-07-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* toc display with inline block for a single clickable OBJR ([#437](https://github.com/pressbooks/buckram/issues/437)) ([7e62a6a](https://github.com/pressbooks/buckram/commit/7e62a6a6de8b47bb771e5555363a6b3da5680d80))
|
|
9
|
+
|
|
10
|
+
## [1.10.3](https://github.com/pressbooks/buckram/compare/v1.10.2...v1.10.3) (2026-07-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* rendering links indent ([#433](https://github.com/pressbooks/buckram/issues/433)) ([7c5ace3](https://github.com/pressbooks/buckram/commit/7c5ace38a06bda84d36a500b1be26d6df0e6383f))
|
|
16
|
+
|
|
3
17
|
## [1.10.2](https://github.com/pressbooks/buckram/compare/v1.10.1...v1.10.2) (2026-06-25)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -16,16 +16,11 @@
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
@if $type == 'prince' {
|
|
19
|
-
// Render each anchor as a single atomic box so PrinceXML emits one PDF link
|
|
20
|
-
// rectangle (and one OBJR tag) for the whole anchor, even when a long URL
|
|
21
|
-
// wraps across lines. This keeps the entire URL clickable
|
|
22
|
-
// (pressbooks/pressbooks#2512) and stops screen readers repeating the link
|
|
23
|
-
// from duplicate OBJR tags (pressbooks/private#2394). max-width and
|
|
24
|
-
// overflow-wrap let the URL wrap inside the box instead of overflowing.
|
|
25
19
|
a {
|
|
26
20
|
display: inline-block;
|
|
27
|
-
max-width: 100%;
|
|
28
21
|
overflow-wrap: break-word;
|
|
22
|
+
text-indent: 0;
|
|
23
|
+
max-width: 100%;
|
|
29
24
|
}
|
|
30
25
|
|
|
31
26
|
.print a {
|