hdoc-tools 0.8.10 → 0.8.11

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.
@@ -2,710 +2,725 @@
2
2
  * Headings
3
3
  * -------------------------------------------------------------------------- */
4
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: 2.5rem;
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*/
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;
152
14
  }
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;
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: 2.5rem;
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*/
283
152
  }
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
-
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
+ font-weight: unset;
529
+ }
530
+
531
+ .HTL-doc .badge:empty{
532
+ display:inline-block;
533
+ }
534
+
535
+ .HTL-doc .badge:after {
536
+ border-radius: 4px;
537
+ padding: 0.05rem 0.25rem;
538
+ }
539
+
540
+ .HTL-doc .badge.badge-schema:after { /* MINT */
541
+ content: "Schema";
542
+ border: solid 1px #34bc9d;
543
+ background-color: #46cfb0;
544
+ }
545
+
546
+ .HTL-doc .badge.badge-simple:after { /* AQUA */
547
+ content: "Simple";
548
+ border: solid 1px #3bd0d6;
549
+ background-color: #4fc2e5;
550
+ }
551
+
552
+ .HTL-doc .badge.badge-complex:after { /* GRAPEFRUIT */
553
+ content: "Complex";
554
+ border: solid 1px #da4453;
555
+ background-color: #ed5565;
556
+ color: white;
557
+ }
558
+
559
+ .HTL-doc .badge.badge-method:after { /* BLUEJEANS */
560
+ content: "Method";
561
+ border: solid 1px #4b8ad5;
562
+ background-color: #5e96e6;
563
+ color: white;
564
+ }
565
+
566
+ .HTL-doc .badge.badge-experimental:after {
567
+ content: "Experimental";
568
+ border: solid 1px #da4453;
569
+ background-color: #ed5565;
570
+ }
571
+
572
+ .HTL-doc .badge.badge-production:after {
573
+ content: "In Production";
574
+ border: solid 1px #185e0f;
575
+ background-color: #3d9719;
576
+ }
577
+
578
+ .HTL-doc .badge.badge-development:after {
579
+ content: "In Development";
580
+ border: solid 1px #4b8ad5;
581
+ background-color: #5e96e6;
582
+ }
583
+
584
+ .HTL-doc .badge.badge-preliminary:after {
585
+ content: "Preliminary";
586
+ border: solid 1px #bdaa58;
587
+ background-color: #ddaf19;
588
+ }
589
+
590
+ .HTL-doc .badge.badge-depreciated:after {
591
+ content: "Depreciated";
592
+ border: solid 1px #494949;
593
+ background-color: #666666;
594
+ }
595
+
596
+ .HTL-doc .badge.badge-info:after {
597
+ content: "Info";
598
+ white-space: nowrap;
599
+ border: solid 1px rgb(48, 121, 0);
600
+ background-color: rgb(57, 150, 3);
601
+ }
602
+
603
+ .HTL-doc .badge.badge-warn:after {
604
+ content: "Warning";
605
+ white-space: nowrap;
606
+ border: solid 1px rgb(173, 137, 19);
607
+ background-color: rgb(211, 168, 29);
608
+ }
609
+
610
+ .HTL-doc .badge.badge-error:after {
611
+ content: "Error";
612
+ white-space: nowrap;
613
+ border: solid 1px rgb(121, 0, 0);
614
+ background-color: rgb(184, 0, 0);
615
+ }
616
+
617
+ .HTL-doc .error-msg {
618
+ color: rgb(184, 0, 0);
619
+ }
620
+
621
+ .HTL-doc .double-braces:before {
622
+ display: inline;
623
+ content: '{{';
624
+ }
625
+
626
+ .HTL-doc .double-braces:after {
627
+ display: inline;
628
+ content: '}}';
629
+ }
630
+
631
+ .HTL-doc .list-line-space {
632
+ line-height: 24px;
633
+ margin: 0;
634
+ }
635
+
636
+
637
+ /* HTL div alerts */
638
+
639
+ .HTL-doc .hdoc-alert{
640
+ border: 1px solid transparent;
641
+ border-radius: 8px;
642
+ padding: 16px 16px 8px;
643
+ line-height: 24px;
644
+ font-size: var(--htl-default-font-size);
645
+ color: var(--htl-c-text-2);
646
+ margin:10px 0;
647
+ }
648
+
649
+ .HTL-doc .hdoc-alert p{
650
+ margin: 8 0;
651
+ }
652
+ .HTL-doc .hdoc-alert .hdoc-alert-title .bi{
653
+ margin-right:5px;
654
+
655
+ }
656
+ .HTL-doc .hdoc-alert .hdoc-alert-title
657
+ {
658
+ font-weight: 700;
659
+ margin: 0;
660
+ }
661
+
662
+ .HTL-doc .hdoc-alert.alert-icon-note
663
+ {
664
+ border-color: var(--htl-custom-block-details-border);
665
+ color: var(--htl-custom-block-details-text);
666
+ background-color: var(--htl-custom-block-details-bg);
667
+ }
668
+ .HTL-doc .hdoc-alert.alert-icon-note code
669
+ {
670
+ background-color: var(--htl-custom-block-details-code-bg);
671
+ }
672
+
673
+ .HTL-doc .hdoc-alert.alert-icon-tip
674
+ {
675
+ border-color: var(--htl-custom-block-tip-border);
676
+ color: var(--htl-custom-block-tip-text);
677
+ background-color: var(--htl-custom-block-tip-bg);
678
+ }
679
+ .HTL-doc .hdoc-alert.alert-icon-tip code{
680
+ background-color: var(--htl-custom-block-tip-code-bg);
681
+ }
682
+
683
+ .HTL-doc .hdoc-alert.alert-icon-important
684
+ {
685
+ border-color: var(--htl-custom-block-info-border);
686
+ color: var(--htl-custom-block-info-text);
687
+ background-color: var(--htl-custom-block-info-bg);
688
+
689
+ }
690
+ .HTL-doc .hdoc-alert.alert-icon-important code {
691
+ background-color: var(--htl-custom-block-info-code-bg);
692
+ }
693
+
694
+ .HTL-doc .hdoc-alert.alert-icon-caution
695
+ {
696
+ border-color: var(--htl-custom-block-caution-border);
697
+ color: var(--htl-custom-block-caution-text);
698
+ background-color: var(--htl-custom-block-caution-bg);
699
+ }
700
+ .HTL-doc .hdoc-alert.alert-icon-caution code {
701
+ background-color: var(--htl-custom-block-caution-code-bg);
702
+ }
703
+
704
+ .HTL-doc .hdoc-alert.alert-icon-warning
705
+ {
706
+ border-color: var(--htl-custom-block-warning-border);
707
+ color: var(--htl-custom-block-warning-text);
708
+ background-color: var(--htl-custom-block-warning-bg);
709
+ }
710
+
711
+ .HTL-doc .hdoc-alert.alert-icon-warning code
712
+ {
713
+ background-color: var(--htl-custom-block-warning-code-bg);
714
+ }
715
+
716
+
717
+ .HTL-doc .after-bullets li:not(:last-child):after {
718
+ content: "•";
719
+ padding-left: 5px;
720
+ padding-right: 5px;
721
+ }
722
+ .HTL-doc .after-fslash li:not(:last-child):after {
723
+ content: "/";
724
+ padding-left: 5px;
725
+ padding-right: 5px;
726
+ }