@healthcatalyst/catalyst-docfx-template 1.0.38 → 1.0.42
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/cashmere/hcicons/hcicons.eot +0 -0
- package/cashmere/hcicons/hcicons.scss +504 -0
- package/cashmere/hcicons/hcicons.svg +169 -0
- package/cashmere/hcicons/hcicons.ttf +0 -0
- package/cashmere/hcicons/hcicons.woff +0 -0
- package/cashmere/hcicons/hcicons.woff2 +0 -0
- package/healthcatalyst-catalyst-docfx-template-1.0.42.tgz +0 -0
- package/package.json +1 -1
- package/partials/breadcrumb.tmpl.partial +1 -1
- package/partials/head.tmpl.partial +1 -1
- package/styles/main.css +15 -1
- package/healthcatalyst-catalyst-docfx-template-1.0.38.tgz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div class="docs-subnav">
|
|
4
4
|
<div class="docs-container">
|
|
5
5
|
<div class="docs-subnav-left" id="subnav-left">
|
|
6
|
-
<div class="docs-subnav-select-container">
|
|
6
|
+
<div class="docs-subnav-select-container" style="display:{{_showVersionDropdown}}">
|
|
7
7
|
<span class="docs-subnav-select-caret"><i class="fa fa-caret-down" aria-hidden="true"></i></span>
|
|
8
8
|
|
|
9
9
|
<!---Disable the version dropdown (below) by setting _showVersionDropdown to "none" in the docfx.json file. If the dropdown is enabled, set its unique ID (_versionDropdownID) in docfx.json and add the proper JavaScript function to populate it in the product.js file. --->
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<link rel="stylesheet" href="{{_rel}}styles/docfx.vendor.css">
|
|
13
13
|
<link rel="stylesheet" href="{{_rel}}styles/docfx.css">
|
|
14
14
|
<link rel="stylesheet" href="{{_rel}}styles/font-awesome.min.css">
|
|
15
|
-
<link rel="stylesheet" href="{{_rel}}
|
|
15
|
+
<link rel="stylesheet" href="{{_rel}}styles/hcicons.css">
|
|
16
16
|
<link rel="stylesheet" href="{{_rel}}styles/lightbox.min.css">
|
|
17
17
|
<link rel="stylesheet" href="{{_rel}}open-sans.css">
|
|
18
18
|
<link rel="stylesheet" href="{{_rel}}styles/main.css">
|
package/styles/main.css
CHANGED
|
@@ -731,6 +731,11 @@ body .toc,
|
|
|
731
731
|
/* Bootstrap docs like sidebar
|
|
732
732
|
------------------------------------------------------- */
|
|
733
733
|
|
|
734
|
+
.affix {
|
|
735
|
+
position: fixed;
|
|
736
|
+
max-width: 200px;
|
|
737
|
+
}
|
|
738
|
+
|
|
734
739
|
.affix h5 {
|
|
735
740
|
display: none;
|
|
736
741
|
}
|
|
@@ -938,10 +943,19 @@ output {
|
|
|
938
943
|
color: #00abf9;
|
|
939
944
|
}
|
|
940
945
|
|
|
941
|
-
#home-page-col-head-dev
|
|
946
|
+
#home-page-col-head-dev,
|
|
947
|
+
#home-page-col-head-ACO {
|
|
942
948
|
color: #f8961d;
|
|
943
949
|
}
|
|
944
950
|
|
|
951
|
+
#home-page-col-head-OPM {
|
|
952
|
+
color: #E04E5B;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
#home-page-col-head-CADS {
|
|
956
|
+
color: #6E53A3;
|
|
957
|
+
}
|
|
958
|
+
|
|
945
959
|
|
|
946
960
|
/* Home page boxes */
|
|
947
961
|
|
|
Binary file
|