diff --git a/packages/buckram/CHANGELOG.md b/packages/buckram/CHANGELOG.md index 5d22950ab..c7e967269 100644 --- a/packages/buckram/CHANGELOG.md +++ b/packages/buckram/CHANGELOG.md @@ -12,6 +12,8 @@ - Fix `td` border variable functionality: [#504](https://github.com/pressbooks/pressbooks-book/pull/504) - Remove running content from blank pages on post introduction front matter: [#522](https://github.com/pressbooks/pressbooks-book/pull/522) +- Add 'if-map-get' to dt-color variable to fix parse error: [#528](https://github.com/pressbooks/pressbooks-book/pull/528) +- Fix: MOBI Table of Contents cannot be clicked: [#543](https://github.com/pressbooks/pressbooks-book/pull/543) ## 1.3.3 diff --git a/packages/buckram/assets/styles/components/toc/_mobi.scss b/packages/buckram/assets/styles/components/toc/_mobi.scss index 160214034..abd5075ea 100644 --- a/packages/buckram/assets/styles/components/toc/_mobi.scss +++ b/packages/buckram/assets/styles/components/toc/_mobi.scss @@ -3,6 +3,14 @@ //// @if $type == 'epub' { + + @media amzn-kf8 { + #toc .toc-chapter-title { + /* CSS property in content is not supported. Table of contents cannot be clicked. */ + position: static; + } + } + @media amzn-mobi { #toc { font-style: normal; @@ -17,6 +25,11 @@ font-weight: normal; } + #toc .toc-chapter-title { + /* CSS property in content is not supported. Table of contents cannot be clicked. */ + position: static; + } + span.chapter-author { display: none; }