fhirsmith 0.3.0

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.
Files changed (277) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/FHIRsmith.png +0 -0
  3. package/README.md +277 -0
  4. package/config-template.json +144 -0
  5. package/library/folder-setup.js +58 -0
  6. package/library/html-server.js +166 -0
  7. package/library/html.js +835 -0
  8. package/library/i18nsupport.js +259 -0
  9. package/library/languages.js +779 -0
  10. package/library/logger-telnet.js +205 -0
  11. package/library/logger.js +279 -0
  12. package/library/package-manager.js +876 -0
  13. package/library/utilities.js +196 -0
  14. package/library/version-utilities.js +1056 -0
  15. package/npmprojector/config-example.json +13 -0
  16. package/npmprojector/indexer.js +394 -0
  17. package/npmprojector/npmprojector.js +395 -0
  18. package/npmprojector/readme.md +174 -0
  19. package/npmprojector/watcher.js +335 -0
  20. package/package.json +119 -0
  21. package/packages/package-crawler.js +846 -0
  22. package/packages/packages-template.html +126 -0
  23. package/packages/packages.js +2838 -0
  24. package/passwords.ini +2 -0
  25. package/publisher/publisher-template.html +208 -0
  26. package/publisher/publisher.js +2167 -0
  27. package/publisher/task-draft.js +458 -0
  28. package/registry/api.js +735 -0
  29. package/registry/crawler.js +637 -0
  30. package/registry/model.js +513 -0
  31. package/registry/readme.md +243 -0
  32. package/registry/registry-data.json +121015 -0
  33. package/registry/registry-template.html +126 -0
  34. package/registry/registry.js +1395 -0
  35. package/registry/test-runner.js +237 -0
  36. package/root-template.html +124 -0
  37. package/server.js +524 -0
  38. package/shl/private-key.pem +5 -0
  39. package/shl/public-key.pem +18 -0
  40. package/shl/shl.js +1125 -0
  41. package/shl/vhl.js +69 -0
  42. package/static/FHIRsmith128.png +0 -0
  43. package/static/FHIRsmith16.png +0 -0
  44. package/static/FHIRsmith32.png +0 -0
  45. package/static/FHIRsmith64.png +0 -0
  46. package/static/assets/css/bootstrap-fhir.css +5302 -0
  47. package/static/assets/css/bootstrap-glyphicons.css +2 -0
  48. package/static/assets/css/bootstrap.css +4097 -0
  49. package/static/assets/css/jquery-ui.css +523 -0
  50. package/static/assets/css/jquery-ui.structure.css +863 -0
  51. package/static/assets/css/jquery-ui.structure.min.css +5 -0
  52. package/static/assets/css/jquery-ui.theme.css +439 -0
  53. package/static/assets/css/jquery-ui.theme.min.css +5 -0
  54. package/static/assets/css/jquery.ui.all.css +7 -0
  55. package/static/assets/css/modules.css +18 -0
  56. package/static/assets/css/project.css +367 -0
  57. package/static/assets/css/pygments-manni.css +66 -0
  58. package/static/assets/css/tags.css +74 -0
  59. package/static/assets/css/xml.css +2 -0
  60. package/static/assets/fonts/glyphiconshalflings-regular.eot +0 -0
  61. package/static/assets/fonts/glyphiconshalflings-regular.otf +0 -0
  62. package/static/assets/fonts/glyphiconshalflings-regular.svg +175 -0
  63. package/static/assets/fonts/glyphiconshalflings-regular.ttf +0 -0
  64. package/static/assets/fonts/glyphiconshalflings-regular.woff +0 -0
  65. package/static/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
  66. package/static/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  67. package/static/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
  68. package/static/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
  69. package/static/assets/ico/favicon.ico +0 -0
  70. package/static/assets/ico/favicon.png +0 -0
  71. package/static/assets/images/fhir-logo-www.png +0 -0
  72. package/static/assets/images/fhir-logo.png +0 -0
  73. package/static/assets/images/hl7-logo.png +0 -0
  74. package/static/assets/images/logo_ansinew.jpg +0 -0
  75. package/static/assets/images/search.png +0 -0
  76. package/static/assets/images/stripe.png +0 -0
  77. package/static/assets/images/target.png +0 -0
  78. package/static/assets/images/tx-registry-root.gif +0 -0
  79. package/static/assets/images/tx-registry.png +0 -0
  80. package/static/assets/images/tx-server.png +0 -0
  81. package/static/assets/images/tx-version.png +0 -0
  82. package/static/assets/js/bootstrap.min.js +6 -0
  83. package/static/assets/js/fhir-gw.js +259 -0
  84. package/static/assets/js/fhir.js +2 -0
  85. package/static/assets/js/html5shiv.js +8 -0
  86. package/static/assets/js/jcookie.js +96 -0
  87. package/static/assets/js/jquery-ui.min.js +6 -0
  88. package/static/assets/js/jquery.js +10716 -0
  89. package/static/assets/js/jquery.min.js +2 -0
  90. package/static/assets/js/jquery.ui.core.js +314 -0
  91. package/static/assets/js/jquery.ui.draggable.js +825 -0
  92. package/static/assets/js/jquery.ui.mouse.js +162 -0
  93. package/static/assets/js/jquery.ui.resizable.js +842 -0
  94. package/static/assets/js/jquery.ui.widget.js +268 -0
  95. package/static/assets/js/json2.js +487 -0
  96. package/static/assets/js/jtip.js +97 -0
  97. package/static/assets/js/respond.min.js +6 -0
  98. package/static/assets/js/statuspage.js +70 -0
  99. package/static/assets/js/xml.js +2 -0
  100. package/static/dist/js/bootstrap.js +1964 -0
  101. package/static/favicon.png +0 -0
  102. package/static/fhir.css +626 -0
  103. package/static/icon-fhir-16.png +0 -0
  104. package/static/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  105. package/static/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  106. package/static/images/ui-bg_flat_10_000000_40x100.png +0 -0
  107. package/static/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  108. package/static/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  109. package/static/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  110. package/static/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  111. package/static/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  112. package/static/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  113. package/static/images/ui-icons_222222_256x240.png +0 -0
  114. package/static/images/ui-icons_228ef1_256x240.png +0 -0
  115. package/static/images/ui-icons_ef8c08_256x240.png +0 -0
  116. package/static/images/ui-icons_ffd27a_256x240.png +0 -0
  117. package/static/images/ui-icons_ffffff_256x240.png +0 -0
  118. package/static/js/jquery.effects.blind.js +49 -0
  119. package/static/js/jquery.effects.bounce.js +78 -0
  120. package/static/js/jquery.effects.clip.js +54 -0
  121. package/static/js/jquery.effects.core.js +763 -0
  122. package/static/js/jquery.effects.drop.js +50 -0
  123. package/static/js/jquery.effects.explode.js +79 -0
  124. package/static/js/jquery.effects.fade.js +32 -0
  125. package/static/js/jquery.effects.fold.js +56 -0
  126. package/static/js/jquery.effects.highlight.js +50 -0
  127. package/static/js/jquery.effects.pulsate.js +51 -0
  128. package/static/js/jquery.effects.scale.js +178 -0
  129. package/static/js/jquery.effects.shake.js +57 -0
  130. package/static/js/jquery.effects.slide.js +50 -0
  131. package/static/js/jquery.effects.transfer.js +45 -0
  132. package/static/js/jquery.ui.accordion.js +611 -0
  133. package/static/js/jquery.ui.autocomplete.js +612 -0
  134. package/static/js/jquery.ui.button.js +416 -0
  135. package/static/js/jquery.ui.datepicker.js +1823 -0
  136. package/static/js/jquery.ui.dialog.js +878 -0
  137. package/static/js/jquery.ui.droppable.js +296 -0
  138. package/static/js/jquery.ui.position.js +252 -0
  139. package/static/js/jquery.ui.progressbar.js +109 -0
  140. package/static/js/jquery.ui.selectable.js +266 -0
  141. package/static/js/jquery.ui.slider.js +666 -0
  142. package/static/js/jquery.ui.sortable.js +1077 -0
  143. package/static/js/jquery.ui.tabs.js +758 -0
  144. package/stats.js +80 -0
  145. package/test-cache/vsac/vsac-valuesets.db +0 -0
  146. package/token/nginx_passport_setup.md +383 -0
  147. package/token/security_guide.md +294 -0
  148. package/token/token-template.html +330 -0
  149. package/token/token.js +1300 -0
  150. package/translations/Messages.properties +1510 -0
  151. package/translations/Messages_ar.properties +1399 -0
  152. package/translations/Messages_de.properties +836 -0
  153. package/translations/Messages_es.properties +737 -0
  154. package/translations/Messages_fr.properties +1 -0
  155. package/translations/Messages_ja.properties +893 -0
  156. package/translations/Messages_nl.properties +1357 -0
  157. package/translations/Messages_pt.properties +1302 -0
  158. package/translations/Messages_ru.properties +1 -0
  159. package/translations/Messages_uz.properties +1 -0
  160. package/translations/Messages_zh.properties +1 -0
  161. package/translations/rendering-phrases.properties +1128 -0
  162. package/translations/rendering-phrases_ar.properties +1091 -0
  163. package/translations/rendering-phrases_de.properties +6 -0
  164. package/translations/rendering-phrases_es.properties +6 -0
  165. package/translations/rendering-phrases_fr.properties +624 -0
  166. package/translations/rendering-phrases_ja.properties +21 -0
  167. package/translations/rendering-phrases_nl.properties +970 -0
  168. package/translations/rendering-phrases_pt.properties +1020 -0
  169. package/translations/rendering-phrases_ru.properties +1094 -0
  170. package/translations/rendering-phrases_uz.properties +1 -0
  171. package/translations/rendering-phrases_zh.properties +1 -0
  172. package/tx/README.md +418 -0
  173. package/tx/cm/cm-api.js +110 -0
  174. package/tx/cm/cm-database.js +735 -0
  175. package/tx/cm/cm-package.js +325 -0
  176. package/tx/cs/cs-api.js +789 -0
  177. package/tx/cs/cs-areacode.js +615 -0
  178. package/tx/cs/cs-country.js +1110 -0
  179. package/tx/cs/cs-cpt.js +785 -0
  180. package/tx/cs/cs-cs.js +1579 -0
  181. package/tx/cs/cs-currency.js +539 -0
  182. package/tx/cs/cs-db.js +1321 -0
  183. package/tx/cs/cs-hgvs.js +329 -0
  184. package/tx/cs/cs-lang.js +465 -0
  185. package/tx/cs/cs-loinc.js +1485 -0
  186. package/tx/cs/cs-mimetypes.js +238 -0
  187. package/tx/cs/cs-ndc.js +704 -0
  188. package/tx/cs/cs-omop.js +1025 -0
  189. package/tx/cs/cs-provider-api.js +43 -0
  190. package/tx/cs/cs-provider-list.js +37 -0
  191. package/tx/cs/cs-rxnorm.js +808 -0
  192. package/tx/cs/cs-snomed.js +1102 -0
  193. package/tx/cs/cs-ucum.js +514 -0
  194. package/tx/cs/cs-unii.js +271 -0
  195. package/tx/cs/cs-uri.js +218 -0
  196. package/tx/cs/cs-usstates.js +305 -0
  197. package/tx/dev.fhir.org.yml +14 -0
  198. package/tx/fixtures/test-cases-setup.json +18 -0
  199. package/tx/fixtures/test-cases.yml +16 -0
  200. package/tx/html/codesystem-operations.liquid +25 -0
  201. package/tx/html/home-metrics.liquid +247 -0
  202. package/tx/html/operations-form.liquid +148 -0
  203. package/tx/html/search-form.liquid +62 -0
  204. package/tx/html/tx-template.html +133 -0
  205. package/tx/html/valueset-operations.liquid +54 -0
  206. package/tx/importers/atc-to-fhir.js +316 -0
  207. package/tx/importers/import-loinc.module.js +1536 -0
  208. package/tx/importers/import-ndc.module.js +1088 -0
  209. package/tx/importers/import-rxnorm.module.js +898 -0
  210. package/tx/importers/import-sct.module.js +2457 -0
  211. package/tx/importers/import-unii.module.js +601 -0
  212. package/tx/importers/readme.md +453 -0
  213. package/tx/importers/subset-loinc.module.js +1081 -0
  214. package/tx/importers/subset-rxnorm.module.js +938 -0
  215. package/tx/importers/tx-import-base.js +351 -0
  216. package/tx/importers/tx-import-settings.js +310 -0
  217. package/tx/importers/tx-import.js +357 -0
  218. package/tx/library/canonical-resource.js +88 -0
  219. package/tx/library/capabilitystatement.js +292 -0
  220. package/tx/library/codesystem.js +774 -0
  221. package/tx/library/conceptmap.js +568 -0
  222. package/tx/library/designations.js +932 -0
  223. package/tx/library/errors.js +77 -0
  224. package/tx/library/extensions.js +117 -0
  225. package/tx/library/namingsystem.js +322 -0
  226. package/tx/library/operation-outcome.js +127 -0
  227. package/tx/library/parameters.js +105 -0
  228. package/tx/library/renderer.js +1559 -0
  229. package/tx/library/terminologycapabilities.js +418 -0
  230. package/tx/library/ucum-parsers.js +1029 -0
  231. package/tx/library/ucum-service.js +370 -0
  232. package/tx/library/ucum-types.js +1099 -0
  233. package/tx/library/valueset.js +543 -0
  234. package/tx/library.js +676 -0
  235. package/tx/ocl/cm-ocl.js +106 -0
  236. package/tx/ocl/cs-ocl.js +39 -0
  237. package/tx/ocl/vs-ocl.js +105 -0
  238. package/tx/operation-context.js +568 -0
  239. package/tx/params.js +613 -0
  240. package/tx/provider.js +403 -0
  241. package/tx/sct/ecl.js +1560 -0
  242. package/tx/sct/expressions.js +2077 -0
  243. package/tx/sct/structures.js +1396 -0
  244. package/tx/tx-html.js +1063 -0
  245. package/tx/tx.fhir.org.yml +39 -0
  246. package/tx/tx.js +927 -0
  247. package/tx/vs/vs-api.js +112 -0
  248. package/tx/vs/vs-database.js +786 -0
  249. package/tx/vs/vs-package.js +358 -0
  250. package/tx/vs/vs-vsac.js +366 -0
  251. package/tx/workers/batch-validate.js +129 -0
  252. package/tx/workers/batch.js +361 -0
  253. package/tx/workers/closure.js +32 -0
  254. package/tx/workers/expand.js +1845 -0
  255. package/tx/workers/lookup.js +407 -0
  256. package/tx/workers/metadata.js +467 -0
  257. package/tx/workers/operations.js +34 -0
  258. package/tx/workers/read.js +164 -0
  259. package/tx/workers/search.js +384 -0
  260. package/tx/workers/subsumes.js +334 -0
  261. package/tx/workers/translate.js +492 -0
  262. package/tx/workers/validate.js +2504 -0
  263. package/tx/workers/worker.js +904 -0
  264. package/tx/xml/capabilitystatement-xml.js +63 -0
  265. package/tx/xml/codesystem-xml.js +62 -0
  266. package/tx/xml/conceptmap-xml.js +65 -0
  267. package/tx/xml/namingsystem-xml.js +65 -0
  268. package/tx/xml/operationoutcome-xml.js +127 -0
  269. package/tx/xml/parameters-xml.js +312 -0
  270. package/tx/xml/terminologycapabilities-xml.js +64 -0
  271. package/tx/xml/valueset-xml.js +64 -0
  272. package/tx/xml/xml-base.js +603 -0
  273. package/vcl/vcl-parser.js +1098 -0
  274. package/vcl/vcl.js +253 -0
  275. package/windows-install.js +19 -0
  276. package/xig/xig-template.html +124 -0
  277. package/xig/xig.js +3049 -0
@@ -0,0 +1,367 @@
1
+ /*
2
+
3
+ Specific layout and styling, project based
4
+
5
+
6
+ */
7
+ /*
8
+ Flexslider vs LayerSlider vs SliderRevolution
9
+ Font-scaling
10
+ Transition
11
+ Isotope Masonry less
12
+ popover alties => wireframe analyse hiervoor
13
+ breadcrumb vs history what is a breadcrumb hiearchy or history?
14
+ gray-color thingy
15
+
16
+ widget-row vs thumbs vs joyo-thumbs
17
+ shortcode for
18
+ - Fontawesome
19
+ - Accordion
20
+ - Notifications
21
+ - span-fluid in content bv span3
22
+ font-awesome OWN export
23
+ joyo-widget and all other style
24
+ widget in sidebar vs in column = uiterlijk op basis van locale class via functions of template
25
+ een sidebar uiterlijk moet ook midden in de pagina kunnen.
26
+ */
27
+ /*
28
+
29
+ - SCAFFOLDING Groundwork for the site. Background colors are set in less or overruled here
30
+ - SCAFFOLDING OBJECTS Objects reoccurring on every page
31
+ - COMPONENTS Everything what can be moved around
32
+ - BACK TO TOP Anchor animating to top of the page
33
+ - EXCEPTIONS FOR SPECIFIC SITUATIONS Some pages are not like the others
34
+ - D-I-D AREA Do-It-Dirty
35
+
36
+ */
37
+ /* SCAFFOLDING STYLING
38
+ ----------------------------------------------------------------------------------------*/
39
+ html {
40
+ background-color: ;
41
+ }
42
+ body {
43
+ background-color: #ffffff;
44
+ position: relative;
45
+ padding-top: 0;
46
+ }
47
+ .segment {
48
+ position: relative;
49
+ }
50
+ .segment > .container {
51
+ background-color: #ffffff;
52
+ position: relative;
53
+ }
54
+ #segment-header {
55
+ background-color: #f5f5f5;
56
+ }
57
+ #segment-header > .container {
58
+ background-color: #e6e6e6;
59
+ }
60
+ #segment-footer {
61
+ background-color: #707070;
62
+ }
63
+ #segment-footer > .container {
64
+ background-color: #ad1f2f;
65
+ color: #ffffff;
66
+ }
67
+ #segment-footer > .container .inner-wrapper {
68
+ padding: 11px 20px;
69
+ }
70
+ #segment-post-footer {
71
+ background-color: #f5f5f5;
72
+ }
73
+ #segment-post-footer > .container {
74
+ background-color: #e6e6e6;
75
+ min-height: 90px;
76
+ }
77
+ /*
78
+ @media (max-width: 767px) {
79
+ body {
80
+ //padding-left: 0;
81
+ //padding-right: 0;
82
+ .segment > .container {
83
+ //padding-left: 10px;
84
+ //padding-right: 10px;
85
+ }
86
+ }
87
+ .segment {
88
+ margin-left: -20px;
89
+ margin-right: -20px;
90
+ &#segment-content {
91
+ margin-left: 0;
92
+ margin-right: 0;
93
+ }
94
+ }
95
+ }
96
+ */
97
+ #sidebar > .inner-wrapper {
98
+ margin-top: 14px;
99
+ margin-bottom: 20px;
100
+ }
101
+ #content > .inner-wrapper,
102
+ .container > .row > .inner-wrapper {
103
+ margin-top: 14px;
104
+ margin-bottom: 20px;
105
+ }
106
+ /* SCAFFOlDING OBJECTS
107
+ ----------------------------------------------------------------------------------------*/
108
+ #logo {
109
+ float: left;
110
+ margin-top: 6px;
111
+ margin-left: 20px;
112
+ margin-bottom: 4px;
113
+ display: block;
114
+ }
115
+ #logo img {
116
+ max-width: 100%;
117
+ }
118
+ #hl7-nav {
119
+ line-height: 50px;
120
+ float: right;
121
+ margin-top: 16px;
122
+ color: #808080;
123
+ }
124
+ #hl7-nav a {
125
+ color: inherit;
126
+ }
127
+ #hl7-status {
128
+ line-height: 50px;
129
+ float: left;
130
+ margin-top: 16px;
131
+ color: maroon;
132
+ }
133
+ #hl7-search {
134
+ line-height: 50px;
135
+ float: right;
136
+ margin-top: 16px;
137
+ color: maroon;
138
+ }
139
+ #hl7-search a {
140
+ color: inherit;
141
+ }
142
+ #hl7-logo {
143
+ float: right;
144
+ margin-left: 6px;
145
+ margin-right: 6px;
146
+ }
147
+ #stripe {
148
+ position: absolute;
149
+ left: 0;
150
+ right: 0;
151
+ top: 0;
152
+ height: 8px;
153
+ background: #999999;
154
+ }
155
+ #notes a {
156
+ color: #555555;
157
+ }
158
+ /* GENERIC OBJECTS
159
+ ----------------------------------------------------------------------------------------*/
160
+ .navbar {
161
+ clear: both;
162
+ border-top-right-radius: 0;
163
+ border-bottom-right-radius: 0;
164
+ border-bottom-left-radius: 0;
165
+ border-top-left-radius: 0;
166
+ border-color: #ffffff;
167
+ border-width: 0px;
168
+ -webkit-box-shadow: none;
169
+ box-shadow: none;
170
+ padding-left: 0px;
171
+ padding-right: 0px;
172
+ margin-bottom: 0;
173
+ }
174
+ .navbar .nav > li > a {
175
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
176
+ }
177
+ .navbar .nav > li > a {
178
+ padding: 10px 12px;
179
+ text-shadow: none;
180
+ }
181
+ .navbar .nav > li > a,
182
+ .navbar .nav > .active > a,
183
+ .navbar .nav > .active > a:hover,
184
+ .navbar .nav > .active > a:focus {
185
+ -webkit-box-shadow: none;
186
+ box-shadow: none;
187
+ }
188
+ .dropdown-menu {
189
+ border-top-right-radius: 0;
190
+ border-bottom-right-radius: 0;
191
+ border-bottom-left-radius: 0;
192
+ border-top-left-radius: 0;
193
+ }
194
+ .dropdown-menu li > a {
195
+ padding: 6px 20px;
196
+ }
197
+ .dropdown-menu > li > a:hover,
198
+ .dropdown-menu > li > a:focus,
199
+ .dropdown-submenu:hover > a,
200
+ .dropdown-submenu:focus > a {
201
+ background-color: #333333;
202
+ background-image: -webkit-gradient(linear, left #da0c23, left 100%, from(#da0c23), to(#333333));
203
+ background-image: -webkit-linear-gradient(top, #da0c23, #da0c23, #333333, 100%);
204
+ background-image: -moz-linear-gradient(top, #da0c23 #da0c23, #333333 100%);
205
+ background-image: linear-gradient(to bottom, #da0c23 #da0c23, #333333 100%);
206
+ background-repeat: repeat-x;
207
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffda0c23', endColorstr='#ff333333', GradientType=0);
208
+ }
209
+ .dropdown-menu > .active > a,
210
+ .dropdown-menu > .active > a:hover,
211
+ .dropdown-menu > .active > a:focus {
212
+ background-color: #333333;
213
+ background-image: -webkit-gradient(linear, left #da0c23, left 100%, from(#da0c23), to(#333333));
214
+ background-image: -webkit-linear-gradient(top, #da0c23, #da0c23, #333333, 100%);
215
+ background-image: -moz-linear-gradient(top, #da0c23 #da0c23, #333333 100%);
216
+ background-image: linear-gradient(to bottom, #da0c23 #da0c23, #333333 100%);
217
+ background-repeat: repeat-x;
218
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffda0c23', endColorstr='#ff333333', GradientType=0);
219
+ }
220
+ .nav-tabs {
221
+ margin-bottom: 20px;
222
+ }
223
+ .nav-tabs a {
224
+ color: #555555;
225
+ }
226
+ .nav-tabs li a:hover,
227
+ .nav-tabs li a:focus {
228
+ border-bottom-color: #955159;
229
+ }
230
+ .nav-tabs {
231
+ border-bottom-color: #955159;
232
+ }
233
+ .nav-tabs > .active > a,
234
+ .nav-tabs > .active > a:hover,
235
+ .nav-tabs > .active > a:focus {
236
+ color: #da0c23;
237
+ border-color: #955159 #955159 transparent;
238
+ }
239
+ /*
240
+ @media (max-width: 979px) {
241
+ // make tabs act like nav-stacked
242
+ // (mostly) copied from bootstrap/navs.less
243
+ .nav-tabs > li {
244
+ float: none;
245
+ }
246
+ .nav-tabs > li > a {
247
+ margin-right: 0; // no need for the gap between nav items
248
+ }
249
+ .nav-tabs {
250
+ border-bottom: 0;
251
+ }
252
+ .nav-tabs > li > a {
253
+ border: 1px solid #ddd;
254
+ .border-top-radius(0);
255
+ .border-right-radius(0);
256
+ .border-bottom-radius(0);
257
+ .border-left-radius(0);
258
+ }
259
+ .nav-tabs > .active > a,
260
+ .nav-tabs > .active > a:hover {
261
+ border: 1px solid #ddd;
262
+ }
263
+ .nav-tabs > li:first-child > a {
264
+ .border-top-radius(4px);
265
+ }
266
+ .nav-tabs > li:last-child > a {
267
+ .border-bottom-radius(4px);
268
+ }
269
+ .nav-tabs > li > a:hover,
270
+ .nav-tabs > li > a:focus {
271
+ border-color: #ddd;
272
+ z-index: 2;
273
+ }
274
+ }
275
+ */
276
+ .nav-list > li > a {
277
+ padding: 3px 15px;
278
+ }
279
+ .breadcrumb {
280
+ margin-bottom: 0;
281
+ }
282
+ .breadcrumb a {
283
+ color: #555555;
284
+ }
285
+ .nav-listing {
286
+ overflow: hidden;
287
+ }
288
+ .nav-listing > li {
289
+ float: left;
290
+ width: 25%;
291
+ }
292
+ .nav-listing > li > a {
293
+ padding: 2px 6px;
294
+ }
295
+ .sectioncount {
296
+ x-float: right;
297
+ x-color: #555555;
298
+ x-font-size: 12px;
299
+ }
300
+ .sectioncount a {
301
+ color: inherit;
302
+ }
303
+ h1.underlined,
304
+ h2.underlined,
305
+ h3.underlined,
306
+ h4.underlined,
307
+ h5.underlined,
308
+ h6.underlined {
309
+ border-bottom: 1px solid #dddddd;
310
+ padding-bottom: 0.2em;
311
+ }
312
+ p > img {
313
+ float: left;
314
+ margin-top: 0;
315
+ margin-right: 10px;
316
+ margin-bottom: 10px;
317
+ margin-left: 0;
318
+ }
319
+ .table td {
320
+ padding: 6px;
321
+ line-height: 18px;
322
+ }
323
+ .table th h1,
324
+ .table th h2,
325
+ .table th h3,
326
+ .table th h4,
327
+ .table th h5,
328
+ .table th h6 {
329
+ margin-bottom: 0;
330
+ }
331
+ .table th.inverted {
332
+ background-color: #555555;
333
+ color: #ffffff;
334
+ border: none!important;
335
+ }
336
+ .table th.inverted h1,
337
+ .table th.inverted h2,
338
+ .table th.inverted h3,
339
+ .table th.inverted h4,
340
+ .table th.inverted h5,
341
+ .table th.inverted h6 {
342
+ color: inherit;
343
+ }
344
+ pre {
345
+ font-size: 12px;
346
+ }
347
+ .icon-warning-sign {
348
+ font-size: 30px;
349
+ margin-right: 10px;
350
+ display: block;
351
+ float: left;
352
+ }
353
+ /* BACK TO TOP
354
+ ----------------------------------------------------------------------------------------*/
355
+ a.to-top {
356
+ background: url('../images/theme/up.png') no-repeat;
357
+ display: block;
358
+ float: right;
359
+ width: 25px;
360
+ height: 25px;
361
+ text-indent: -9999px;
362
+ margin-top: -28px;
363
+ }
364
+ /* EXCEPTIONS FOR SPECIFIC SITUATIONS
365
+ ----------------------------------------------------------------------------------------*/
366
+ /* D-I-D AREA
367
+ ----------------------------------------------------------------------------------------*/
@@ -0,0 +1,66 @@
1
+ .hll { background-color: #ffffcc }
2
+ /*{ background: #f0f3f3; }*/
3
+ .c { color: #999; } /* Comment */
4
+ .err { color: #AA0000; background-color: #FFAAAA } /* Error */
5
+ .k { color: #006699; } /* Keyword */
6
+ .o { color: #555555 } /* Operator */
7
+ .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
8
+ .cp { color: #009999 } /* Comment.Preproc */
9
+ .c1 { color: #999; } /* Comment.Single */
10
+ .cs { color: #999; } /* Comment.Special */
11
+ .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
12
+ .ge { font-style: italic } /* Generic.Emph */
13
+ .gr { color: #FF0000 } /* Generic.Error */
14
+ .gh { color: #003300; } /* Generic.Heading */
15
+ .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
16
+ .go { color: #AAAAAA } /* Generic.Output */
17
+ .gp { color: #000099; } /* Generic.Prompt */
18
+ .gs { } /* Generic.Strong */
19
+ .gu { color: #003300; } /* Generic.Subheading */
20
+ .gt { color: #99CC66 } /* Generic.Traceback */
21
+ .kc { color: #006699; } /* Keyword.Constant */
22
+ .kd { color: #006699; } /* Keyword.Declaration */
23
+ .kn { color: #006699; } /* Keyword.Namespace */
24
+ .kp { color: #006699 } /* Keyword.Pseudo */
25
+ .kr { color: #006699; } /* Keyword.Reserved */
26
+ .kt { color: #007788; } /* Keyword.Type */
27
+ .m { color: #FF6600 } /* Literal.Number */
28
+ .s { color: #d44950 } /* Literal.String */
29
+ .na { color: #4f9fcf } /* Name.Attribute */
30
+ .nb { color: #336666 } /* Name.Builtin */
31
+ .nc { color: #00AA88; } /* Name.Class */
32
+ .no { color: #336600 } /* Name.Constant */
33
+ .nd { color: #9999FF } /* Name.Decorator */
34
+ .ni { color: #999999; } /* Name.Entity */
35
+ .ne { color: #CC0000; } /* Name.Exception */
36
+ .nf { color: #CC00FF } /* Name.Function */
37
+ .nl { color: #9999FF } /* Name.Label */
38
+ .nn { color: #00CCFF; } /* Name.Namespace */
39
+ .nt { color: #2f6f9f; } /* Name.Tag */
40
+ .nv { color: #003333 } /* Name.Variable */
41
+ .ow { color: #000000; } /* Operator.Word */
42
+ .w { color: #bbbbbb } /* Text.Whitespace */
43
+ .mf { color: #FF6600 } /* Literal.Number.Float */
44
+ .mh { color: #FF6600 } /* Literal.Number.Hex */
45
+ .mi { color: #FF6600 } /* Literal.Number.Integer */
46
+ .mo { color: #FF6600 } /* Literal.Number.Oct */
47
+ .sb { color: #CC3300 } /* Literal.String.Backtick */
48
+ .sc { color: #CC3300 } /* Literal.String.Char */
49
+ .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
50
+ .s2 { color: #CC3300 } /* Literal.String.Double */
51
+ .se { color: #CC3300; } /* Literal.String.Escape */
52
+ .sh { color: #CC3300 } /* Literal.String.Heredoc */
53
+ .si { color: #AA0000 } /* Literal.String.Interpol */
54
+ .sx { color: #CC3300 } /* Literal.String.Other */
55
+ .sr { color: #33AAAA } /* Literal.String.Regex */
56
+ .s1 { color: #CC3300 } /* Literal.String.Single */
57
+ .ss { color: #FFCC33 } /* Literal.String.Symbol */
58
+ .bp { color: #336666 } /* Name.Builtin.Pseudo */
59
+ .vc { color: #003333 } /* Name.Variable.Class */
60
+ .vg { color: #003333 } /* Name.Variable.Global */
61
+ .vi { color: #003333 } /* Name.Variable.Instance */
62
+ .il { color: #FF6600 } /* Literal.Number.Integer.Long */
63
+
64
+ .css .o,
65
+ .css .o + .nt,
66
+ .css .nt + .nt { color: #999; }
@@ -0,0 +1,74 @@
1
+ a.tag {
2
+ color: #3E6D8E;
3
+ background-color: #E0EAF1;
4
+ border-bottom: 1px solid #b3cee1;
5
+ border-right: 1px solid #b3cee1;
6
+ padding: 3px 4px 3px 4px;
7
+ margin: 2px 2px 2px 0;
8
+ text-decoration: none;
9
+ font-size: 90%;
10
+ line-height: 2.4;
11
+ white-space: nowrap;
12
+ }
13
+
14
+ a.tag-profile {
15
+ color: #3E6D8E;
16
+ background-color: #98FB98;
17
+ border-bottom: 1px solid #b3cee1;
18
+ border-right: 1px solid #b3cee1;
19
+ padding: 3px 4px 3px 4px;
20
+ margin: 2px 2px 2px 0;
21
+ text-decoration: none;
22
+ font-size: 90%;
23
+ line-height: 2.4;
24
+ white-space: nowrap;
25
+ }
26
+
27
+ a.tag-security {
28
+ color: #3E6D8E;
29
+ background-color: #FF6347;
30
+ border-bottom: 1px solid #b3cee1;
31
+ border-right: 1px solid #b3cee1;
32
+ padding: 3px 4px 3px 4px;
33
+ margin: 2px 2px 2px 0;
34
+ text-decoration: none;
35
+ font-size: 90%;
36
+ line-height: 2.4;
37
+ white-space: nowrap;
38
+ }
39
+
40
+ a.tag-delete {
41
+ color: #3E6D8E;
42
+ background-color: #f9d1cb;
43
+ border-bottom: 1px solid #b3cee1;
44
+ border-right: 1px solid #b3cee1;
45
+ padding: 0px 4px 0px 4px;
46
+ margin: 0px 2px 0px 0;
47
+
48
+ text-decoration: none;
49
+ font-size: 90%;
50
+ line-height: 2.4;
51
+ white-space: nowrap;
52
+ }
53
+
54
+ div.fhir-tag-form {
55
+ background-color: Lemonchiffon;
56
+ border-bottom: 1px solid #778899;
57
+ border-right: 1px solid #778899;
58
+ padding: 10px 10px 0px 10px;
59
+ margin: 0px 0px 0px 0px;
60
+ position: fixed;
61
+ width: 520px;
62
+ top: 0;
63
+ left: 0;
64
+ opacity: 1.0;
65
+ z-order: 50;
66
+ }
67
+
68
+ .combo {position:relative;width:310px;text-align:left;padding:0;margin:0;}
69
+ .combo * {padding:0;margin:0;}
70
+ .combo label {display:block;float:left;width:92px;text-align:right;}
71
+ .combo input {width:300px; background-color:#cfc;height:1.5em;z-index:50;}
72
+ .combo ul {padding:1px;border:2px solid #ccc;width: 300px;background-color:#cfc;position:absolute;right:3px;top:1.8em;display:none;z-index:51;}
73
+ .combo li {display:block; width: 100%;}
74
+
@@ -0,0 +1,2 @@
1
+
2
+ pre code{display:block;padding:.5em;background:white;color:black}pre .comment,pre .template_comment,pre .javadoc,pre .comment *{color:#800}pre .keyword,pre .method,pre .list .title,pre .clojure .built_in,pre .nginx .title,pre .tag .title,pre .setting .value,pre .winutils,pre .tex .command,pre .http .title,pre .request,pre .status{color:#008}pre .envvar,pre .tex .special{color:#660}pre .string,pre .tag .value,pre .cdata,pre .filter .argument,pre .attr_selector,pre .apache .cbracket,pre .date,pre .regexp{color:#080}pre .sub .identifier,pre .pi,pre .tag,pre .tag .keyword,pre .decorator,pre .ini .title,pre .shebang,pre .prompt,pre .hexcolor,pre .rules .value,pre .css .value .number,pre .literal,pre .symbol,pre .ruby .symbol .string,pre .number,pre .css .function,pre .clojure .attribute{color:#066}pre .class .title,pre .haskell .type,pre .smalltalk .class,pre .javadoctag,pre .yardoctag,pre .phpdoc,pre .typename,pre .tag .attribute,pre .doctype,pre .class .id,pre .built_in,pre .setting,pre .params,pre .variable,pre .clojure .title{color:#606}pre .css .tag,pre .rules .property,pre .pseudo,pre .subst{color:#000}pre .css .class,pre .css .id{color:#9b703f}pre .value .important{color:#f70;font-weight:bold}pre .rules .keyword{color:#c5af75}pre .annotation,pre .apache .sqbracket,pre .nginx .built_in{color:#9b859d}pre .preprocessor,pre .preprocessor *{color:#444}pre .tex .formula{background-color:#EEE;font-style:italic}pre .diff .header,pre .chunk{color:#808080;font-weight:bold}pre .diff .change{background-color:#bccff9}pre .addition{background-color:#baeeba}pre .deletion{background-color:#ffc8bd}pre .comment .yardoctag{font-weight:bold}