@healthcatalyst/catalyst-docfx-template 1.0.74 → 1.0.82
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.
|
Binary file
|
package/layout/_master.tmpl
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
<!--[if IE]><![endif]-->
|
|
9
9
|
<html>
|
|
10
10
|
{{>partials/head}}
|
|
11
|
+
{{^redirect_url}}
|
|
11
12
|
<body data-spy="scroll" data-target="#affix" data-offset="120">
|
|
12
13
|
<div id="wrapper">
|
|
13
14
|
<header>
|
|
@@ -63,4 +64,5 @@
|
|
|
63
64
|
</div>
|
|
64
65
|
{{>partials/scripts}}
|
|
65
66
|
</body>
|
|
67
|
+
{{/redirect_url}}
|
|
66
68
|
</html>
|
package/package.json
CHANGED
|
@@ -2,24 +2,29 @@
|
|
|
2
2
|
{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
5
|
+
{{#redirect_url}}
|
|
6
|
+
<meta http-equiv="refresh" content="0;URL='{{redirect_url}}'">
|
|
7
|
+
{{/redirect_url}}
|
|
8
|
+
{{^redirect_url}}
|
|
9
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
10
|
+
<title>{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}}</title>
|
|
11
|
+
<meta name="viewport" content="width=device-width">
|
|
12
|
+
<meta name="title" content="{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}}">
|
|
13
|
+
<meta name="generator" content="docfx {{_docfxVersion}}">
|
|
14
|
+
{{#_description}}<meta name="description" content="{{_description}}">{{/_description}}
|
|
15
|
+
<link rel="shortcut icon" href="{{_rel}}{{_stylesPath}}{{{_appFaviconPath}}}{{^_appFaviconPath}}favicon.ico{{/_appFaviconPath}}">
|
|
16
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/docfx.vendor.css">
|
|
17
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/docfx.css">
|
|
18
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/font-awesome.min.css">
|
|
19
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/hcicons.css">
|
|
20
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/lightbox.min.css">
|
|
21
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}open-sans.css">
|
|
22
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}styles/main.css">
|
|
23
|
+
<link rel="stylesheet" href="{{_rel}}{{_stylesPath}}product-styles/product.css">
|
|
24
|
+
<meta property="docfx:navrel" content="{{_navRel}}">
|
|
25
|
+
<meta property="docfx:tocrel" content="{{_tocRel}}">
|
|
26
|
+
{{#_noindex}}<meta name="searchOption" content="noindex">{{/_noindex}}
|
|
27
|
+
{{#_enableSearch}}<meta property="docfx:rel" content="{{_rel}}">{{/_enableSearch}}
|
|
28
|
+
{{#_enableNewTab}}<meta property="docfx:newtab" content="true">{{/_enableNewTab}}
|
|
29
|
+
{{/redirect_url}}
|
|
25
30
|
</head>
|
package/styles/main.css
CHANGED
|
@@ -536,6 +536,12 @@ td:nth-of-type(1) {
|
|
|
536
536
|
|
|
537
537
|
.expand-stub {
|
|
538
538
|
margin-top: 6px;
|
|
539
|
+
font-weight: normal;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.expand-stub+a {
|
|
543
|
+
margin-top: 6px;
|
|
544
|
+
font-weight: normal;
|
|
539
545
|
}
|
|
540
546
|
|
|
541
547
|
.toc .nav>li>.expand-stub {
|
|
@@ -663,28 +669,35 @@ body .toc {
|
|
|
663
669
|
overflow: auto;
|
|
664
670
|
max-height: calc(100% - 104px);
|
|
665
671
|
}
|
|
672
|
+
|
|
666
673
|
.sidetoc,
|
|
667
674
|
body .toc,
|
|
668
675
|
.sidefilter,
|
|
669
676
|
.sidetoggle {
|
|
670
677
|
background-color: #f1f1f1 !important;
|
|
671
678
|
}
|
|
679
|
+
|
|
672
680
|
.toc-filter {
|
|
673
681
|
margin: 0;
|
|
674
682
|
}
|
|
683
|
+
|
|
675
684
|
article h1:first-of-type {
|
|
676
685
|
padding-right: 0;
|
|
677
686
|
}
|
|
687
|
+
|
|
678
688
|
.article.grid-right {
|
|
679
689
|
margin: 0;
|
|
680
690
|
}
|
|
691
|
+
|
|
681
692
|
.breadcrumb {
|
|
682
693
|
white-space: nowrap !important;
|
|
683
694
|
}
|
|
695
|
+
|
|
684
696
|
.toc li:after {
|
|
685
697
|
content: "";
|
|
686
698
|
margin: 0 !important;
|
|
687
699
|
}
|
|
700
|
+
|
|
688
701
|
.toc .nav>li,
|
|
689
702
|
.toc .nav>li>a {
|
|
690
703
|
display: block !important;
|
|
@@ -905,6 +918,7 @@ output {
|
|
|
905
918
|
}
|
|
906
919
|
|
|
907
920
|
@media (min-width: 768px) {
|
|
921
|
+
|
|
908
922
|
.sidetoc,
|
|
909
923
|
.sidefilter {
|
|
910
924
|
margin-left: -15px;
|
|
@@ -1540,17 +1554,21 @@ a.anchor {
|
|
|
1540
1554
|
}
|
|
1541
1555
|
|
|
1542
1556
|
@media only screen and (max-width: 800px) {
|
|
1557
|
+
|
|
1543
1558
|
.feedback-container,
|
|
1544
1559
|
.feedback-container-new {
|
|
1545
1560
|
justify-content: center;
|
|
1546
1561
|
}
|
|
1562
|
+
|
|
1547
1563
|
.feedback-top-left {
|
|
1548
1564
|
text-align: center;
|
|
1549
1565
|
width: 100%;
|
|
1550
1566
|
}
|
|
1567
|
+
|
|
1551
1568
|
.feedback-top-right {
|
|
1552
1569
|
margin: 10px 0;
|
|
1553
1570
|
}
|
|
1571
|
+
|
|
1554
1572
|
.submit-feedback {
|
|
1555
1573
|
display: block;
|
|
1556
1574
|
margin: 0 auto;
|
|
@@ -1561,7 +1579,7 @@ a.anchor {
|
|
|
1561
1579
|
/* TOC headings */
|
|
1562
1580
|
|
|
1563
1581
|
:not(.level2)>li>.toc-heading,
|
|
1564
|
-
|
|
1582
|
+
:not(.level2)>li>.toc-heading-active {
|
|
1565
1583
|
font-weight: bold;
|
|
1566
1584
|
font-size: 15px;
|
|
1567
1585
|
text-transform: uppercase;
|
|
@@ -1569,7 +1587,7 @@ a.anchor {
|
|
|
1569
1587
|
}
|
|
1570
1588
|
|
|
1571
1589
|
:not(.level2)>li>a:first-child.toc-heading:hover,
|
|
1572
|
-
|
|
1590
|
+
:not(.level2)>li>a:first-child.toc-heading:focus {
|
|
1573
1591
|
color: inherit !important;
|
|
1574
1592
|
cursor: default;
|
|
1575
1593
|
}
|
|
@@ -1765,7 +1783,7 @@ pre {
|
|
|
1765
1783
|
width: 100%;
|
|
1766
1784
|
}
|
|
1767
1785
|
|
|
1768
|
-
.message
|
|
1786
|
+
.message>.fa:before {
|
|
1769
1787
|
margin-left: -52px;
|
|
1770
1788
|
padding-right: 10px;
|
|
1771
1789
|
color: #00aeff;
|
|
Binary file
|