@healthcatalyst/catalyst-docfx-template 1.0.154 → 1.0.156

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@healthcatalyst/catalyst-docfx-template",
3
- "version": "1.0.154",
3
+ "version": "1.0.156",
4
4
  "license": "MIT",
5
5
  "description": "A DocFX Template patching the Default template.",
6
6
  "publishConfig": {
package/styles/main.css CHANGED
@@ -710,6 +710,10 @@ body .toc,
710
710
  font-weight: 400;
711
711
  }
712
712
 
713
+ .affix ul ul > li > a:before {
714
+
715
+ content: "";
716
+ }
713
717
 
714
718
  /* Nested links */
715
719
 
@@ -2099,3 +2103,17 @@ article .tabGroup > ul > li {
2099
2103
  #faqTable tr.header, #faqTable tr:hover {
2100
2104
  background-color: #f1f1f1;
2101
2105
  }
2106
+
2107
+ /* Make the right-hand In-This-Topic panel scrollable */
2108
+ .sideaffix .affix {
2109
+ max-height: calc(100vh - 150px); /* adjust based on header/footer */
2110
+ overflow-y: auto;
2111
+ overflow-x: hidden;
2112
+ }
2113
+
2114
+ /* Prevent footer from overlapping the right-hand In This Topic pane */
2115
+ .sideaffix,
2116
+ .sideaffix .affix {
2117
+ padding-bottom: 80px; /* adjust to your footer height */
2118
+ margin-bottom: 80px; /* optional but helps with fixed-position variants */
2119
+ }