hdoc-tools 0.1.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 (79) hide show
  1. package/custom_modules/tips.js +69 -0
  2. package/hdoc-build.js +5 -0
  3. package/hdoc-serve.js +366 -0
  4. package/hdoc.js +86 -0
  5. package/package.json +29 -0
  6. package/ui/css/images/hornbill-logo-full.svg +92 -0
  7. package/ui/css/theme-default/fonts/inter-cyrillic-ext.woff2 +0 -0
  8. package/ui/css/theme-default/fonts/inter-cyrillic.woff2 +0 -0
  9. package/ui/css/theme-default/fonts/inter-greek-ext.woff2 +0 -0
  10. package/ui/css/theme-default/fonts/inter-greek.woff2 +0 -0
  11. package/ui/css/theme-default/fonts/inter-italic-cyrillic-ext.woff2 +0 -0
  12. package/ui/css/theme-default/fonts/inter-italic-cyrillic.woff2 +0 -0
  13. package/ui/css/theme-default/fonts/inter-italic-greek-ext.woff2 +0 -0
  14. package/ui/css/theme-default/fonts/inter-italic-greek.woff2 +0 -0
  15. package/ui/css/theme-default/fonts/inter-italic-latin-ext.woff2 +0 -0
  16. package/ui/css/theme-default/fonts/inter-italic-latin.woff2 +0 -0
  17. package/ui/css/theme-default/fonts/inter-italic-vietnamese.woff2 +0 -0
  18. package/ui/css/theme-default/fonts/inter-latin-ext.woff2 +0 -0
  19. package/ui/css/theme-default/fonts/inter-latin.woff2 +0 -0
  20. package/ui/css/theme-default/fonts/inter-roman-cyrillic-ext.woff2 +0 -0
  21. package/ui/css/theme-default/fonts/inter-roman-cyrillic.woff2 +0 -0
  22. package/ui/css/theme-default/fonts/inter-roman-greek-ext.woff2 +0 -0
  23. package/ui/css/theme-default/fonts/inter-roman-greek.woff2 +0 -0
  24. package/ui/css/theme-default/fonts/inter-roman-latin-ext.woff2 +0 -0
  25. package/ui/css/theme-default/fonts/inter-roman-latin.woff2 +0 -0
  26. package/ui/css/theme-default/fonts/inter-roman-vietnamese.woff2 +0 -0
  27. package/ui/css/theme-default/fonts/inter-vietnamese.woff2 +0 -0
  28. package/ui/css/theme-default/styles/base.css +225 -0
  29. package/ui/css/theme-default/styles/components/content.css +82 -0
  30. package/ui/css/theme-default/styles/components/custom-block.css +90 -0
  31. package/ui/css/theme-default/styles/components/htl-doc.css +711 -0
  32. package/ui/css/theme-default/styles/components/sidebar.css +178 -0
  33. package/ui/css/theme-default/styles/fonts.css +221 -0
  34. package/ui/css/theme-default/styles/htldoc.layouts.css +244 -0
  35. package/ui/css/theme-default/styles/vars.css +393 -0
  36. package/ui/index.html +230 -0
  37. package/ui/js/doc.hornbill.js +485 -0
  38. package/ui/js/highlightjs/LICENSE +24 -0
  39. package/ui/js/highlightjs/highlight.pack.js +2 -0
  40. package/ui/js/highlightjs/styles/brown-paper.css +64 -0
  41. package/ui/js/highlightjs/styles/brown-papersq.png +0 -0
  42. package/ui/js/highlightjs/styles/codepen-embed.css +60 -0
  43. package/ui/js/highlightjs/styles/color-brewer.css +71 -0
  44. package/ui/js/highlightjs/styles/darcula.css +77 -0
  45. package/ui/js/highlightjs/styles/dark.css +63 -0
  46. package/ui/js/highlightjs/styles/darkula.css +6 -0
  47. package/ui/js/highlightjs/styles/default.css +99 -0
  48. package/ui/js/highlightjs/styles/dracula.css +76 -0
  49. package/ui/js/highlightjs/styles/far.css +71 -0
  50. package/ui/js/highlightjs/styles/foundation.css +88 -0
  51. package/ui/js/highlightjs/styles/github-gist.css +71 -0
  52. package/ui/js/highlightjs/styles/github-mm.css +71 -0
  53. package/ui/js/highlightjs/styles/github.css +99 -0
  54. package/ui/js/highlightjs/styles/googlecode.css +89 -0
  55. package/ui/js/highlightjs/styles/grayscale.css +101 -0
  56. package/ui/js/highlightjs/styles/idea.css +97 -0
  57. package/ui/js/highlightjs/styles/ir-black.css +73 -0
  58. package/ui/js/highlightjs/styles/kavadocs.css +71 -0
  59. package/ui/js/highlightjs/styles/kavadocsdark.css +120 -0
  60. package/ui/js/highlightjs/styles/kimbie.dark.css +74 -0
  61. package/ui/js/highlightjs/styles/kimbie.light.css +74 -0
  62. package/ui/js/highlightjs/styles/magula.css +70 -0
  63. package/ui/js/highlightjs/styles/mono-blue.css +59 -0
  64. package/ui/js/highlightjs/styles/monokai-sublime.css +83 -0
  65. package/ui/js/highlightjs/styles/monokai.css +70 -0
  66. package/ui/js/highlightjs/styles/obsidian.css +88 -0
  67. package/ui/js/highlightjs/styles/paraiso-dark.css +72 -0
  68. package/ui/js/highlightjs/styles/paraiso-light.css +72 -0
  69. package/ui/js/highlightjs/styles/railscasts.css +106 -0
  70. package/ui/js/highlightjs/styles/rainbow.css +85 -0
  71. package/ui/js/highlightjs/styles/solarized-dark.css +84 -0
  72. package/ui/js/highlightjs/styles/solarized-light.css +84 -0
  73. package/ui/js/highlightjs/styles/sunburst.css +102 -0
  74. package/ui/js/highlightjs/styles/twilight.css +97 -0
  75. package/ui/js/highlightjs/styles/vs.css +68 -0
  76. package/ui/js/highlightjs/styles/vs2015.css +117 -0
  77. package/ui/js/highlightjs/styles/xcode.css +104 -0
  78. package/ui/js/highlightjs/styles/zenburn.css +80 -0
  79. package/ui/js/highlightjs-badge.js +443 -0
@@ -0,0 +1,711 @@
1
+ /**
2
+ * Headings
3
+ * -------------------------------------------------------------------------- */
4
+
5
+ .HTL-doc h1,
6
+ .HTL-doc h2,
7
+ .HTL-doc h3,
8
+ .HTL-doc h4,
9
+ .HTL-doc h5,
10
+ .HTL-doc h6 {
11
+ position: relative;
12
+ font-weight: 600;
13
+ outline: none;
14
+ }
15
+
16
+ .HTL-doc h1 {
17
+ letter-spacing: -0.02em;
18
+ line-height: 40px;
19
+ font-size: 28px;
20
+ }
21
+
22
+ .HTL-doc h2 {
23
+ margin: 48px 0 16px;
24
+ padding-top: 24px;
25
+ letter-spacing: -0.02em;
26
+ line-height: 32px;
27
+ font-size: 24px;
28
+ }
29
+
30
+ .HTL-doc h3 {
31
+ margin: 32px 0 0;
32
+ letter-spacing: -0.01em;
33
+ line-height: 28px;
34
+ font-size: 20px;
35
+ }
36
+
37
+ .HTL-doc h2 .header-anchor {
38
+ position: absolute;
39
+ font-size: 18px;
40
+ left: -25px;
41
+ top: 52%;
42
+ width:32px; /*so will over lap headre slightly - stops flicker when hover out of header into anchor */
43
+ opacity: 0; /*hidden */
44
+ }
45
+
46
+ .HTL-doc h3 .header-anchor {
47
+ position: absolute;
48
+ font-size: 18px;
49
+ left: -25px;
50
+ top: 5px;
51
+ width:32px; /*so will over lap headre slightly - stops flicker when hover out of header into anchor */
52
+ opacity: 0; /*hidden */
53
+ }
54
+
55
+
56
+ .HTL-doc h1:hover .header-anchor,
57
+ .HTL-doc h2:hover .header-anchor,
58
+ .HTL-doc h3:hover .header-anchor,
59
+ .HTL-doc h4:hover .header-anchor,
60
+ .HTL-doc h5:hover .header-anchor,
61
+ .HTL-doc h6:hover .header-anchor
62
+ {
63
+ opacity: 1;
64
+ }
65
+
66
+ @media (min-width: 768px) {
67
+ .HTL-doc h1 {
68
+ letter-spacing: -0.02em;
69
+ line-height: 40px;
70
+ font-size: 32px;
71
+ }
72
+ }
73
+
74
+ /**
75
+ * Paragraph and inline elements
76
+ * -------------------------------------------------------------------------- */
77
+
78
+ .HTL-doc p,
79
+ .HTL-doc summary {
80
+ margin: 16px 0;
81
+ }
82
+
83
+ .HTL-doc p {
84
+ line-height: 28px;
85
+ }
86
+
87
+ .HTL-doc blockquote {
88
+ margin: 16px 0;
89
+ border-left: 2px solid var(--htl-c-divider);
90
+ padding-left: 16px;
91
+ transition: border-color 0.5s;
92
+ }
93
+
94
+ .HTL-doc blockquote > p {
95
+ margin: 0;
96
+ font-size: var(--htl-default-font-size);
97
+ color: var(--htl-c-text-2);
98
+ transition: color 0.5s;
99
+ }
100
+
101
+ .HTL-doc a {
102
+ font-weight: 500;
103
+ color: var(--htl-c-brand);
104
+ text-decoration-style: dotted;
105
+ transition: color 0.25s;
106
+ }
107
+
108
+ .HTL-doc a:hover {
109
+ color: var(--htl-c-brand-dark);
110
+ }
111
+
112
+ .HTL-doc strong {
113
+ font-weight: 600;
114
+ }
115
+
116
+ /**
117
+ * Lists
118
+ * -------------------------------------------------------------------------- */
119
+
120
+ .HTL-doc ul,
121
+ .HTL-doc ol {
122
+ padding-left: 1.25rem;
123
+ margin: 16px 0;
124
+ }
125
+
126
+ .HTL-doc ul {
127
+ list-style: disc;
128
+ }
129
+
130
+ .HTL-doc ol {
131
+ list-style: decimal;
132
+ }
133
+
134
+ .HTL-doc li + li {
135
+ margin-top: 8px;
136
+ }
137
+
138
+ .HTL-doc li > ol,
139
+ .HTL-doc li > ul {
140
+ margin: 8px 0 0;
141
+ }
142
+
143
+ /**
144
+ * Table
145
+ * -------------------------------------------------------------------------- */
146
+
147
+ .HTL-doc table {
148
+ display: block;
149
+ border-collapse: collapse;
150
+ margin: 20px 0;
151
+ font-size: var(--htl-default-font-size); /* sets font-size for table and table rows/td/th etc*/
152
+ }
153
+
154
+ .HTL-doc tr {
155
+ border-top: 1px solid var(--htl-c-divider);
156
+ transition: background-color 0.5s;
157
+ }
158
+
159
+ .HTL-doc tr:nth-child(2n) {
160
+ background-color: var(--htl-c-bg-soft);
161
+ }
162
+
163
+ .HTL-doc th,
164
+ .HTL-doc td {
165
+ border: 1px solid var(--htl-c-divider);
166
+ padding: 10px 14px;
167
+ vertical-align: top;
168
+ }
169
+
170
+ .HTL-doc th {
171
+ font-size: var(--htl-default-font-size);
172
+ font-weight: 600;
173
+ background-color: var(--htl-c-white-soft);
174
+ }
175
+
176
+ .dark .HTL-doc th {
177
+ background-color: var(--htl-c-black);
178
+ }
179
+
180
+ /**
181
+ * Decorational elements
182
+ * -------------------------------------------------------------------------- */
183
+
184
+ .HTL-doc hr {
185
+ margin: 16px 0;
186
+ border: none;
187
+ border-top: 1px solid var(--htl-c-divider-light);
188
+ }
189
+
190
+ /**
191
+ * Custom Block
192
+ * -------------------------------------------------------------------------- */
193
+
194
+ .HTL-doc .custom-block {
195
+ margin: 16px 0;
196
+ }
197
+
198
+ .HTL-doc .custom-block p {
199
+ margin: 8px 0;
200
+ line-height: 24px;
201
+ }
202
+
203
+ .HTL-doc .custom-block p:first-child {
204
+ margin: 0;
205
+ }
206
+
207
+ .HTL-doc .custom-block a {
208
+ color: inherit;
209
+ font-weight: 600;
210
+ text-decoration: underline;
211
+ transition: opacity 0.25s;
212
+ }
213
+
214
+ .HTL-doc .custom-block a:hover {
215
+ opacity: 0.6;
216
+ }
217
+
218
+ .HTL-doc .custom-block code {
219
+ font-size: var(--htl-custom-block-code-font-size);
220
+ font-weight: 700;
221
+ color: inherit;
222
+ }
223
+
224
+ .HTL-doc .custom-block div[class*='language-'] {
225
+ margin: 8px 0;
226
+ }
227
+
228
+ .HTL-doc .custom-block div[class*='language-'] code {
229
+ font-weight: 400;
230
+ background-color: transparent;
231
+ }
232
+
233
+ /**
234
+ * Code
235
+ * -------------------------------------------------------------------------- */
236
+
237
+ /* inline code */
238
+ .HTL-doc :not(pre, h1, h2, h3, h4, h5, h6) > code {
239
+ font-size: var(--htl-code-font-size);
240
+ }
241
+
242
+ .HTL-doc :not(pre) > code {
243
+ border-radius: 4px;
244
+ padding: 3px 6px;
245
+ color: var(--htl-c-text-code);
246
+ background-color: var(--htl-c-bg-mute);
247
+ transition: color 0.5s, background-color 0.5s;
248
+ }
249
+
250
+ .HTL-doc h1 > code,
251
+ .HTL-doc h2 > code,
252
+ .HTL-doc h3 > code {
253
+ font-size: var(--htl-default-font-size);
254
+ }
255
+
256
+ .HTL-doc a > code {
257
+ color: var(--htl-c-brand);
258
+ transition: color 0.25s;
259
+ }
260
+
261
+ .HTL-doc a:hover > code {
262
+ color: var(--htl-c-brand-dark);
263
+ }
264
+
265
+ .HTL-doc div[class*='language-'] {
266
+ position: relative;
267
+ margin: 16px -24px;
268
+ background-color: var(--htl-code-block-bg);
269
+ overflow-x: auto;
270
+ transition: background-color 0.5s;
271
+ }
272
+
273
+ @media (min-width: 640px) {
274
+ .HTL-doc div[class*='language-'] {
275
+ border-radius: 8px;
276
+ margin: 16px 0;
277
+ }
278
+ }
279
+
280
+ @media (max-width: 639px) {
281
+ .HTL-doc li div[class*='language-'] {
282
+ border-radius: 8px 0 0 8px;
283
+ }
284
+ }
285
+
286
+ .HTL-doc div[class*='language-'] + div[class*='language-'],
287
+ .HTL-doc div[class$='-api'] + div[class*='language-'],
288
+ .HTL-doc div[class*='language-'] + div[class$='-api'] > div[class*='language-'] {
289
+ margin-top: -8px;
290
+ }
291
+
292
+ .HTL-doc [class*='language-'] pre,
293
+ .HTL-doc [class*='language-'] code {
294
+ text-align: left;
295
+ white-space: pre;
296
+ word-spacing: normal;
297
+ word-break: normal;
298
+ word-wrap: normal;
299
+ -moz-tab-size: 4;
300
+ -o-tab-size: 4;
301
+ tab-size: 4;
302
+ -webkit-hyphens: none;
303
+ -moz-hyphens: none;
304
+ -ms-hyphens: none;
305
+ hyphens: none;
306
+ }
307
+
308
+ .HTL-doc [class*='language-'] pre {
309
+ position: relative;
310
+ z-index: 1;
311
+ margin: 0;
312
+ padding: 16px 0;
313
+ background: transparent;
314
+ overflow-x: auto;
315
+ }
316
+
317
+ .HTL-doc [class*='language-'] code {
318
+ display: block;
319
+ padding: 0 24px;
320
+ width: fit-content;
321
+ min-width: 100%;
322
+ line-height: var(--htl-code-line-height);
323
+ font-size: var(--htl-code-font-size);
324
+ color: var(--htl-code-block-color);
325
+ transition: color 0.5s;
326
+ }
327
+
328
+ .HTL-doc [class*='language-'] code .highlighted {
329
+ background-color: var(--htl-code-line-highlight-color);
330
+ transition: background-color 0.5s;
331
+ margin: 0 -24px;
332
+ padding: 0 24px;
333
+ width: calc(100% + 2 * 24px);
334
+ display: inline-block;
335
+ }
336
+
337
+ .HTL-doc [class*='language-'] code .highlighted.error {
338
+ background-color: var(--htl-code-line-error-color);
339
+ }
340
+
341
+ .HTL-doc [class*='language-'] code .highlighted.warning {
342
+ background-color: var(--htl-code-line-warning-color);
343
+ }
344
+
345
+ .HTL-doc [class*='language-'] code .diff {
346
+ transition: background-color 0.5s;
347
+ margin: 0 -24px;
348
+ padding: 0 24px;
349
+ width: calc(100% + 2 * 24px);
350
+ display: inline-block;
351
+ }
352
+
353
+ .HTL-doc [class*='language-'] code .diff::before {
354
+ position: absolute;
355
+ left: 1rem;
356
+ }
357
+
358
+ .HTL-doc [class*='language-'] .has-focused-lines .line:not(.has-focus) {
359
+ filter: blur(0.095rem);
360
+ opacity: 0.4;
361
+ transition: filter 0.35s, opacity 0.35s;
362
+ }
363
+
364
+ .HTL-doc [class*='language-'] .has-focused-lines .line:not(.has-focus) {
365
+ opacity: 0.7;
366
+ transition: filter 0.35s, opacity 0.35s;
367
+ }
368
+
369
+ .HTL-doc [class*='language-']:hover .has-focused-lines .line:not(.has-focus) {
370
+ filter: blur(0);
371
+ opacity: 1;
372
+ }
373
+
374
+ .HTL-doc [class*='language-'] code .diff.remove {
375
+ background-color: var(--htl-code-line-diff-remove-color);
376
+ opacity: 0.7;
377
+ }
378
+
379
+ .HTL-doc [class*='language-'] code .diff.remove::before {
380
+ content: '-';
381
+ color: var(--htl-code-line-diff-remove-symbol-color);
382
+ }
383
+
384
+ .HTL-doc [class*='language-'] code .diff.add {
385
+ background-color: var(--htl-code-line-diff-add-color);
386
+ }
387
+
388
+ .HTL-doc [class*='language-'] code .diff.add::before {
389
+ content: '+';
390
+ color: var(--htl-code-line-diff-add-symbol-color);
391
+ }
392
+
393
+ .HTL-doc div[class*='language-'].line-numbers-mode {
394
+ padding-left: 32px;
395
+ }
396
+
397
+ .HTL-doc .line-numbers-wrapper {
398
+ position: absolute;
399
+ top: 0;
400
+ bottom: 0;
401
+ left: 0;
402
+ z-index: 3;
403
+ border-right: 1px solid var(--htl-c-divider-dark-2);
404
+ padding-top: 16px;
405
+ width: 32px;
406
+ text-align: center;
407
+ font-family: var(--htl-font-family-mono);
408
+ line-height: var(--htl-code-line-height);
409
+ font-size: var(--htl-code-font-size);
410
+ color: var(--htl-code-line-number-color);
411
+ transition: border-color 0.5s, color 0.5s;
412
+ }
413
+
414
+ .HTL-doc [class*='language-'] > button.copy {
415
+ position: absolute;
416
+ top: 8px;
417
+ right: 8px;
418
+ z-index: 3;
419
+ display: block;
420
+ justify-content: center;
421
+ align-items: center;
422
+ border-radius: 4px;
423
+ width: 40px;
424
+ height: 40px;
425
+ background-color: var(--htl-code-block-bg);
426
+ opacity: 0;
427
+ cursor: pointer;
428
+ background-image: var(--htl-icon-copy);
429
+ background-position: 50%;
430
+ background-size: 20px;
431
+ background-repeat: no-repeat;
432
+ transition: opacity 0.4s;
433
+ }
434
+
435
+ .HTL-doc [class*='language-']:hover > button.copy,
436
+ .HTL-doc [class*='language-'] > button.copy:focus {
437
+ opacity: 1;
438
+ }
439
+
440
+ .HTL-doc [class*='language-'] > button.copy:hover {
441
+ background-color: var(--htl-code-copy-code-hover-bg);
442
+ }
443
+
444
+ .HTL-doc [class*='language-'] > button.copy.copied,
445
+ .HTL-doc [class*='language-'] > button.copy:hover.copied {
446
+ border-radius: 0 4px 4px 0;
447
+ background-color: var(--htl-code-copy-code-hover-bg);
448
+ background-image: var(--htl-icon-copied);
449
+ }
450
+
451
+ .HTL-doc [class*='language-'] > button.copy.copied::before,
452
+ .HTL-doc [class*='language-'] > button.copy:hover.copied::before {
453
+ position: relative;
454
+ left: -65px;
455
+ display: block;
456
+ border-radius: 4px 0 0 4px;
457
+ padding-top: 8px;
458
+ width: 64px;
459
+ height: 40px;
460
+ text-align: center;
461
+ font-size: var(--htl-default-font-size);
462
+ font-weight: 500;
463
+ color: var(--htl-code-copy-code-active-text);
464
+ background-color: var(--htl-code-copy-code-hover-bg);
465
+ white-space: nowrap;
466
+ content: 'Copied';
467
+ }
468
+
469
+ .HTL-doc [class*='language-'] > span.lang {
470
+ position: absolute;
471
+ top: 6px;
472
+ right: 12px;
473
+ z-index: 2;
474
+ font-size: var(--htl-default-font-size);
475
+ font-weight: 500;
476
+ color: var(--htl-c-text-dark-3);
477
+ transition: color 0.4s, opacity 0.4s;
478
+ }
479
+
480
+ .HTL-doc [class*='language-']:hover > button.copy + span.lang,
481
+ .HTL-doc [class*='language-'] > button.copy:focus + span.lang {
482
+ opacity: 0;
483
+ }
484
+
485
+ /**
486
+ * Component: Team
487
+ * -------------------------------------------------------------------------- */
488
+
489
+ .HTL-doc .VPTeamMembers {
490
+ margin-top: 24px;
491
+ }
492
+
493
+ .HTL-doc .VPTeamMembers.small.count-1 .container {
494
+ margin: 0 !important;
495
+ max-width: calc((100% - 24px) / 2) !important;
496
+ }
497
+
498
+ .HTL-doc .VPTeamMembers.small.count-2 .container,
499
+ .HTL-doc .VPTeamMembers.small.count-3 .container {
500
+ max-width: 100% !important;
501
+ }
502
+
503
+ .HTL-doc .VPTeamMembers.medium.count-1 .container {
504
+ margin: 0 !important;
505
+ max-width: calc((100% - 24px) / 2) !important;
506
+ }
507
+
508
+
509
+
510
+ /* CUSTOM HTL CLASSES FOR HTDOC */
511
+ /* highlightjs code copy badge */
512
+ .HTL-doc .code-badge {
513
+ background: #555 !important;
514
+ padding: 8px !important;
515
+ }
516
+ .HTL-doc .code-badge-copy-icon {
517
+ font-size: 1.3em !important;
518
+ }
519
+
520
+ /* HTL inline styles */
521
+ .HTL-doc .badge {
522
+ white-space: nowrap;
523
+ border-radius: 4px;
524
+ padding: 0.1rem 0.5rem;
525
+ font-size: 0.8em;
526
+ margin-right: 4px;
527
+ color: white;
528
+ }
529
+
530
+ .HTL-doc .badge:after {
531
+ border-radius: 4px;
532
+ padding: 0.05rem 0.25rem;
533
+ }
534
+
535
+ .HTL-doc .badge.badge-schema:after { /* MINT */
536
+ content: "Schema";
537
+ border: solid 1px #34bc9d;
538
+ background-color: #46cfb0;
539
+ }
540
+
541
+ .HTL-doc .badge.badge-simple:after { /* AQUA */
542
+ content: "Simple";
543
+ border: solid 1px #3bd0d6;
544
+ background-color: #4fc2e5;
545
+ }
546
+
547
+ .HTL-doc .badge.badge-complex:after { /* GRAPEFRUIT */
548
+ content: "Complex";
549
+ border: solid 1px #da4453;
550
+ background-color: #ed5565;
551
+ color: white;
552
+ }
553
+
554
+ .HTL-doc .badge.badge-method:after { /* BLUEJEANS */
555
+ content: "Method";
556
+ border: solid 1px #4b8ad5;
557
+ background-color: #5e96e6;
558
+ color: white;
559
+ }
560
+
561
+ .HTL-doc .badge.badge-experimental:after {
562
+ content: "Experimental";
563
+ border: solid 1px #da4453;
564
+ background-color: #ed5565;
565
+ }
566
+
567
+ .HTL-doc .badge.badge-production:after {
568
+ content: "In Production";
569
+ border: solid 1px #185e0f;
570
+ background-color: #3d9719;
571
+ }
572
+
573
+ .HTL-doc .badge.badge-development:after {
574
+ content: "In Development";
575
+ border: solid 1px #4b8ad5;
576
+ background-color: #5e96e6;
577
+ }
578
+
579
+ .HTL-doc .badge.badge-preliminary:after {
580
+ content: "Preliminary";
581
+ border: solid 1px #bdaa58;
582
+ background-color: #ddaf19;
583
+ }
584
+
585
+ .HTL-doc .badge.badge-depreciated:after {
586
+ content: "Depreciated";
587
+ border: solid 1px #494949;
588
+ background-color: #666666;
589
+ }
590
+
591
+ .HTL-doc .badge.badge-info:after {
592
+ content: "Info";
593
+ white-space: nowrap;
594
+ border: solid 1px rgb(48, 121, 0);
595
+ background-color: rgb(57, 150, 3);
596
+ }
597
+
598
+ .HTL-doc .badge.badge-warn:after {
599
+ content: "Warning";
600
+ white-space: nowrap;
601
+ border: solid 1px rgb(173, 137, 19);
602
+ background-color: rgb(211, 168, 29);
603
+ }
604
+
605
+ .HTL-doc .badge.badge-error:after {
606
+ content: "Error";
607
+ white-space: nowrap;
608
+ border: solid 1px rgb(121, 0, 0);
609
+ background-color: rgb(184, 0, 0);
610
+ }
611
+
612
+ .HTL-doc .error-msg {
613
+ color: rgb(184, 0, 0);
614
+ }
615
+
616
+ .HTL-doc .double-braces:before {
617
+ display: inline;
618
+ content: '{{';
619
+ }
620
+
621
+ .HTL-doc .double-braces:after {
622
+ display: inline;
623
+ content: '}}';
624
+ }
625
+
626
+ .HTL-doc .list-line-space {
627
+ line-height: 24px;
628
+ margin: 0;
629
+ }
630
+
631
+
632
+ /* HTL div alerts */
633
+
634
+ .HTL-doc .hdoc-alert{
635
+ border: 1px solid transparent;
636
+ border-radius: 8px;
637
+ padding: 16px 16px 8px;
638
+ line-height: 24px;
639
+ font-size: var(--htl-default-font-size);
640
+ color: var(--htl-c-text-2);
641
+ margin:10px 0;
642
+ }
643
+
644
+ .HTL-doc .hdoc-alert p{
645
+ margin: 8 0;
646
+ }
647
+ .HTL-doc .hdoc-alert .hdoc-alert-title .bi{
648
+ margin-right:5px;
649
+
650
+ }
651
+ .HTL-doc .hdoc-alert .hdoc-alert-title
652
+ {
653
+ font-weight: 700;
654
+ margin: 0;
655
+ }
656
+
657
+ .HTL-doc .hdoc-alert.alert-icon-note
658
+ {
659
+ border-color: var(--htl-custom-block-details-border);
660
+ color: var(--htl-custom-block-details-text);
661
+ background-color: var(--htl-custom-block-details-bg);
662
+ }
663
+ .HTL-doc .hdoc-alert.alert-icon-note code
664
+ {
665
+ background-color: var(--htl-custom-block-details-code-bg);
666
+ }
667
+
668
+ .HTL-doc .hdoc-alert.alert-icon-tip
669
+ {
670
+ border-color: var(--htl-custom-block-tip-border);
671
+ color: var(--htl-custom-block-tip-text);
672
+ background-color: var(--htl-custom-block-tip-bg);
673
+ }
674
+ .HTL-doc .hdoc-alert.alert-icon-tip code{
675
+ background-color: var(--htl-custom-block-tip-code-bg);
676
+ }
677
+
678
+ .HTL-doc .hdoc-alert.alert-icon-important
679
+ {
680
+ border-color: var(--htl-custom-block-info-border);
681
+ color: var(--htl-custom-block-info-text);
682
+ background-color: var(--htl-custom-block-info-bg);
683
+
684
+ }
685
+ .HTL-doc .hdoc-alert.alert-icon-important code {
686
+ background-color: var(--htl-custom-block-info-code-bg);
687
+ }
688
+
689
+ .HTL-doc .hdoc-alert.alert-icon-caution
690
+ {
691
+ border-color: var(--htl-custom-block-caution-border);
692
+ color: var(--htl-custom-block-caution-text);
693
+ background-color: var(--htl-custom-block-caution-bg);
694
+ }
695
+ .HTL-doc .hdoc-alert.alert-icon-caution code {
696
+ background-color: var(--htl-custom-block-caution-code-bg);
697
+ }
698
+
699
+ .HTL-doc .hdoc-alert.alert-icon-warning
700
+ {
701
+ border-color: var(--htl-custom-block-warning-border);
702
+ color: var(--htl-custom-block-warning-text);
703
+ background-color: var(--htl-custom-block-warning-bg);
704
+ }
705
+
706
+ .HTL-doc .hdoc-alert.alert-icon-warning code
707
+ {
708
+ background-color: var(--htl-custom-block-warning-code-bg);
709
+ }
710
+
711
+