hdoc-tools 0.14.6 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -386,6 +386,69 @@ video {
|
|
386
386
|
background-color: #224187;
|
387
387
|
}
|
388
388
|
|
389
|
+
.badge.badge-http-delete:after {
|
390
|
+
content: "DELETE";
|
391
|
+
white-space: nowrap;
|
392
|
+
border: solid 1px #C7004F;
|
393
|
+
background-color: #C7004F;
|
394
|
+
}
|
395
|
+
|
396
|
+
.badge.badge-http-get:after {
|
397
|
+
content: "GET";
|
398
|
+
white-space: nowrap;
|
399
|
+
border: solid 1px rgb(12, 139, 63);
|
400
|
+
background-color: rgb(12, 139, 63);
|
401
|
+
}
|
402
|
+
|
403
|
+
.badge.badge-http-head:after {
|
404
|
+
content: "HEAD";
|
405
|
+
white-space: nowrap;
|
406
|
+
border: solid 1px #51C17D;
|
407
|
+
background-color: #51C17D;
|
408
|
+
}
|
409
|
+
|
410
|
+
.badge.badge-http-options:after {
|
411
|
+
content: "OPTIONS";
|
412
|
+
white-space: nowrap;
|
413
|
+
border: solid 1px rgb(158, 28, 167);
|
414
|
+
background-color: rgb(158, 28, 167);
|
415
|
+
}
|
416
|
+
|
417
|
+
.badge.badge-http-patch:after {
|
418
|
+
content: "PATCH";
|
419
|
+
white-space: nowrap;
|
420
|
+
border: solid 1px #58178c;
|
421
|
+
background-color: #58178c;
|
422
|
+
}
|
423
|
+
|
424
|
+
.badge.badge-http-post:after {
|
425
|
+
content: "POST";
|
426
|
+
white-space: nowrap;
|
427
|
+
border: solid 1px #F18229;
|
428
|
+
background-color: #F18229;
|
429
|
+
}
|
430
|
+
|
431
|
+
.badge.badge-http-put:after {
|
432
|
+
content: "PUT";
|
433
|
+
white-space: nowrap;
|
434
|
+
border: solid 1px #1194DE;
|
435
|
+
background-color: #1194DE;
|
436
|
+
}
|
437
|
+
|
438
|
+
.badge.badge-rest:after {
|
439
|
+
content: "REST";
|
440
|
+
white-space: nowrap;
|
441
|
+
border: solid 1px #00B0E9;
|
442
|
+
background-color: #00B0E9;
|
443
|
+
}
|
444
|
+
|
445
|
+
.badge.badge-rpc:after {
|
446
|
+
content: "RPC";
|
447
|
+
white-space: nowrap;
|
448
|
+
border: solid 1px #4A536B;
|
449
|
+
background-color: #4A536B;
|
450
|
+
}
|
451
|
+
|
389
452
|
code {
|
390
453
|
font-size: 0.9em;
|
391
454
|
}
|
@@ -665,6 +665,70 @@
|
|
665
665
|
background-color: #224187;
|
666
666
|
}
|
667
667
|
|
668
|
+
.HTL-doc .badge.badge-http-delete:after {
|
669
|
+
content: "DELETE";
|
670
|
+
white-space: nowrap;
|
671
|
+
border: solid 1px #C7004F;
|
672
|
+
background-color: #C7004F;
|
673
|
+
}
|
674
|
+
|
675
|
+
.HTL-doc .badge.badge-http-get:after {
|
676
|
+
content: "GET";
|
677
|
+
white-space: nowrap;
|
678
|
+
border: solid 1px rgb(12, 139, 63);
|
679
|
+
background-color: rgb(12, 139, 63);
|
680
|
+
}
|
681
|
+
|
682
|
+
.HTL-doc .badge.badge-http-head:after {
|
683
|
+
content: "HEAD";
|
684
|
+
white-space: nowrap;
|
685
|
+
border: solid 1px #51C17D;
|
686
|
+
background-color: #51C17D;
|
687
|
+
}
|
688
|
+
|
689
|
+
.HTL-doc .badge.badge-http-options:after {
|
690
|
+
content: "OPTIONS";
|
691
|
+
white-space: nowrap;
|
692
|
+
border: solid 1px rgb(158, 28, 167);
|
693
|
+
background-color: rgb(158, 28, 167);
|
694
|
+
}
|
695
|
+
|
696
|
+
.HTL-doc .badge.badge-http-patch:after {
|
697
|
+
content: "PATCH";
|
698
|
+
white-space: nowrap;
|
699
|
+
border: solid 1px #58178c;
|
700
|
+
background-color: #58178c;
|
701
|
+
}
|
702
|
+
|
703
|
+
.HTL-doc .badge.badge-http-post:after {
|
704
|
+
content: "POST";
|
705
|
+
white-space: nowrap;
|
706
|
+
border: solid 1px #F18229;
|
707
|
+
background-color: #F18229;
|
708
|
+
}
|
709
|
+
|
710
|
+
.HTL-doc .badge.badge-http-put:after {
|
711
|
+
content: "PUT";
|
712
|
+
white-space: nowrap;
|
713
|
+
border: solid 1px #1194DE;
|
714
|
+
background-color: #1194DE;
|
715
|
+
}
|
716
|
+
|
717
|
+
.HTL-doc .badge.badge-rest:after {
|
718
|
+
content: "REST";
|
719
|
+
white-space: nowrap;
|
720
|
+
border: solid 1px #00B0E9;
|
721
|
+
background-color: #00B0E9;
|
722
|
+
}
|
723
|
+
|
724
|
+
.HTL-doc .badge.badge-rpc:after {
|
725
|
+
content: "RPC";
|
726
|
+
white-space: nowrap;
|
727
|
+
border: solid 1px #4A536B;
|
728
|
+
background-color: #4A536B;
|
729
|
+
}
|
730
|
+
|
731
|
+
|
668
732
|
.HTL-doc .error-msg {
|
669
733
|
color: rgb(184, 0, 0);
|
670
734
|
}
|