-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
alluvial plots simplified, added to createfigs
- Loading branch information
Showing
17 changed files
with
4,228 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
docs/critical-coastal-habitat-trends_files/header-attrs-2.27/header-attrs.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to | ||
// be compatible with the behavior of Pandoc < 2.8). | ||
document.addEventListener('DOMContentLoaded', function(e) { | ||
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); | ||
var i, h, a; | ||
for (i = 0; i < hs.length; i++) { | ||
h = hs[i]; | ||
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 | ||
a = h.attributes; | ||
while (a.length > 0) h.removeAttribute(a[0].name); | ||
} | ||
}); |
21 changes: 21 additions & 0 deletions
21
docs/critical-coastal-habitat-trends_files/htmltools-fill-0.5.8.1/fill.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@layer htmltools { | ||
.html-fill-container { | ||
display: flex; | ||
flex-direction: column; | ||
/* Prevent the container from expanding vertically or horizontally beyond its | ||
parent's constraints. */ | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > .html-fill-item { | ||
/* Fill items can grow and shrink freely within | ||
available vertical space in fillable container */ | ||
flex: 1 1 auto; | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > :not(.html-fill-item) { | ||
/* Prevent shrinking or growing of non-fill items */ | ||
flex: 0 0 auto; | ||
} | ||
} |
Oops, something went wrong.