Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<!-- Hide Confluence sidebar -->
<script>
AJS.toInit(function(){
  if (AJS.$("div.auiia-fixed-sidebar-toggle").click(width() > 55){
    AJS.Confluence.Sidebar.toggle();
  }
});
</script>


HTML
<!-- Bootstrap CSS -->
<link
  rel="stylesheet"
  href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
  integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
  crossorigin="anonymous"
/>

<!-- Remove elements for PDF export -->
<style>
  @media print {
    .noprint {
      display: none;
    }
    .print-timeline {
      height: 25%;
    }
  }
</style>

...