@digi-frontend/dgate-api-documentation 1.0.55 → 1.0.56
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/dist/_virtual/index10.js +1 -1
- package/dist/_virtual/index20.js +2 -0
- package/dist/_virtual/index20.js.map +1 -0
- package/dist/_virtual/index3.js +1 -1
- package/dist/_virtual/index4.js +1 -1
- package/dist/_virtual/index6.js +1 -1
- package/dist/_virtual/index7.js +1 -1
- package/dist/_virtual/index8.js +1 -1
- package/dist/_virtual/index9.js +1 -1
- package/dist/node_modules/dom-serializer/lib/index.js +1 -1
- package/dist/node_modules/dom-serializer/node_modules/entities/lib/index.js +1 -1
- package/dist/node_modules/domelementtype/lib/index.js +1 -1
- package/dist/node_modules/domhandler/lib/index.js +1 -1
- package/dist/node_modules/domutils/lib/index.js +1 -1
- package/dist/node_modules/fast-json-stable-stringify/index.js +2 -0
- package/dist/node_modules/fast-json-stable-stringify/index.js.map +1 -0
- package/dist/node_modules/formik/dist/formik.esm.js +1 -1
- package/dist/node_modules/html-dom-parser/lib/index.js +1 -1
- package/dist/node_modules/html-react-parser/esm/index.mjs.js +1 -1
- package/dist/node_modules/html-react-parser/esm/index.mjs.js.map +1 -1
- package/dist/node_modules/html-react-parser/lib/index.js +1 -1
- package/dist/node_modules/htmlparser2/dist/commonjs/index.js +1 -1
- package/dist/node_modules/react-is/index.js +1 -1
- package/dist/node_modules/react-property/lib/index.js +1 -1
- package/dist/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/node_modules/toposort/index.js +1 -1
- package/dist/node_modules/yup/index.esm.js +1 -1
- package/dist/src/assets/icons/CloseIcon.svg.js +2 -0
- package/dist/src/assets/icons/CloseIcon.svg.js.map +1 -0
- package/dist/src/components/InfoForm/InfoForm.js +1 -1
- package/dist/src/components/InfoForm/InfoForm.js.map +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
- package/dist/src/components/dialog/index.js +1 -1
- package/dist/src/components/dialog/index.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsContent/DocsContent.js +1 -1
- package/dist/src/layout/docsComponents/DocsContent/DocsContent.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsContent/OverviewPage/index.js +2 -0
- package/dist/src/layout/docsComponents/DocsContent/OverviewPage/index.js.map +1 -0
- package/dist/src/layout/docsComponents/DocsHeader/DocsHeader.js +1 -1
- package/dist/src/layout/docsComponents/DocsHeader/DocsHeader.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js +1 -1
- package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js.map +1 -1
- package/dist/src/layout/docsLayout.js +1 -1
- package/dist/src/layout/docsLayout.js.map +1 -1
- package/dist/styles.css +608 -607
- package/dist/types/components/dialog/dialog.d.ts +2 -0
- package/dist/types/components/dialog/index.d.ts +1 -1
- package/dist/types/layout/docsComponents/DocsContent/DocsContent.d.ts +2 -1
- package/dist/types/layout/docsComponents/DocsContent/OverviewPage/index.d.ts +9 -0
- package/dist/types/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.d.ts +3 -1
- package/dist/types/layout/docsLayout.d.ts +2 -1
- package/package.json +1 -1
- package/src/components/InfoForm/InfoForm.tsx +16 -16
- package/src/components/MethodAccordion/MethodAccordion.tsx +28 -12
- package/src/components/dialog/dialog.ts +3 -0
- package/src/components/dialog/index.tsx +7 -8
- package/src/layout/docsComponents/DocsContent/DocsContent.tsx +5 -2
- package/src/layout/docsComponents/DocsContent/{TagPage → OverviewPage}/index.tsx +17 -4
- package/src/layout/docsComponents/DocsContent/{TagPage → OverviewPage}/style.scss +1 -0
- package/src/layout/docsComponents/DocsHeader/DocsHeader.tsx +1 -4
- package/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.tsx +12 -1
- package/src/layout/docsLayout.tsx +7 -1
package/dist/styles.css
CHANGED
|
@@ -39,147 +39,6 @@
|
|
|
39
39
|
grid-row: 2;
|
|
40
40
|
grid-column: 2;
|
|
41
41
|
background-color: white;
|
|
42
|
-
}.containerTitleDrawer {
|
|
43
|
-
height: 64px;
|
|
44
|
-
min-height: 64px;
|
|
45
|
-
display: flex;
|
|
46
|
-
flex-direction: row;
|
|
47
|
-
justify-content: space-between;
|
|
48
|
-
align-items: center;
|
|
49
|
-
background-color: #f1f2f6;
|
|
50
|
-
padding: 0 30px 0 30px;
|
|
51
|
-
width: 100%;
|
|
52
|
-
}
|
|
53
|
-
.containerTitleDrawer span {
|
|
54
|
-
color: #12131a;
|
|
55
|
-
font-weight: 600;
|
|
56
|
-
font-size: 18px;
|
|
57
|
-
line-height: 25px;
|
|
58
|
-
letter-spacing: 0em;
|
|
59
|
-
}
|
|
60
|
-
.containerTitleDrawer svg path {
|
|
61
|
-
stroke: #000 !important;
|
|
62
|
-
}
|
|
63
|
-
.containerTitleDrawer .closeIcon {
|
|
64
|
-
cursor: pointer;
|
|
65
|
-
}.apiInfoForm {
|
|
66
|
-
display: grid;
|
|
67
|
-
padding: 1.25rem 1.875rem;
|
|
68
|
-
gap: 1.25rem;
|
|
69
|
-
}
|
|
70
|
-
.apiInfoForm .paramsTable .paramDescContainer {
|
|
71
|
-
display: flex;
|
|
72
|
-
}
|
|
73
|
-
.apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
|
|
74
|
-
height: inherit;
|
|
75
|
-
width: 1px;
|
|
76
|
-
background-color: #d8dae5;
|
|
77
|
-
}
|
|
78
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
|
|
79
|
-
stroke-width: 0.1;
|
|
80
|
-
}
|
|
81
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
|
|
82
|
-
padding: 0;
|
|
83
|
-
margin-right: 1.25rem;
|
|
84
|
-
}
|
|
85
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
|
|
86
|
-
display: flex;
|
|
87
|
-
align-items: center;
|
|
88
|
-
padding: 0;
|
|
89
|
-
font-size: 0.875rem;
|
|
90
|
-
}
|
|
91
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
92
|
-
margin-block: auto;
|
|
93
|
-
}
|
|
94
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
|
|
95
|
-
fill: #12131a;
|
|
96
|
-
}
|
|
97
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
|
|
98
|
-
padding: 0;
|
|
99
|
-
border-width: 0 !important;
|
|
100
|
-
}
|
|
101
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
102
|
-
margin-block: auto;
|
|
103
|
-
}
|
|
104
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
|
|
105
|
-
width: 1.125rem;
|
|
106
|
-
}
|
|
107
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
|
|
108
|
-
margin-block: auto;
|
|
109
|
-
}
|
|
110
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
|
|
111
|
-
width: 1.125rem;
|
|
112
|
-
}
|
|
113
|
-
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
|
|
114
|
-
fill: #3aaa35;
|
|
115
|
-
}
|
|
116
|
-
.apiInfoForm .paramsTable .externalDocsLink {
|
|
117
|
-
font-size: 0.875rem;
|
|
118
|
-
line-height: 1.25rem;
|
|
119
|
-
cursor: pointer;
|
|
120
|
-
align-self: center;
|
|
121
|
-
margin-right: 2rem;
|
|
122
|
-
}
|
|
123
|
-
.apiInfoForm .paramsTable .editExternalDocs {
|
|
124
|
-
display: flex;
|
|
125
|
-
align-items: center;
|
|
126
|
-
padding-right: 0.625rem;
|
|
127
|
-
}
|
|
128
|
-
.apiInfoForm .paramsTable .editExternalDocs svg {
|
|
129
|
-
cursor: pointer;
|
|
130
|
-
}
|
|
131
|
-
.apiInfoForm .paramsTable .editExternalDocs svg path {
|
|
132
|
-
fill: #12131a;
|
|
133
|
-
}
|
|
134
|
-
.apiInfoForm .paramsTable .editDescTooltipContent {
|
|
135
|
-
display: flex;
|
|
136
|
-
flex-direction: column;
|
|
137
|
-
gap: 0.625rem;
|
|
138
|
-
padding-bottom: 0.625rem;
|
|
139
|
-
}
|
|
140
|
-
.apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
141
|
-
margin-inline: 0.625rem;
|
|
142
|
-
}
|
|
143
|
-
.apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
|
|
144
|
-
font-weight: 600;
|
|
145
|
-
font-size: 0.875rem;
|
|
146
|
-
line-height: 1.25rem;
|
|
147
|
-
padding: 0.75rem 1.25rem;
|
|
148
|
-
border-bottom: 1px solid #d8dae5;
|
|
149
|
-
}
|
|
150
|
-
.apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
|
|
151
|
-
content: "*";
|
|
152
|
-
color: red;
|
|
153
|
-
transform: translateX(0.125rem);
|
|
154
|
-
}
|
|
155
|
-
.apiInfoForm .apiDocRow {
|
|
156
|
-
display: grid;
|
|
157
|
-
grid-template-columns: 1fr 1fr;
|
|
158
|
-
gap: 1.25rem;
|
|
159
|
-
}
|
|
160
|
-
.apiInfoForm .apiInfoForm_tagsChips {
|
|
161
|
-
margin-top: -1.25rem;
|
|
162
|
-
}
|
|
163
|
-
.apiInfoForm .editDescTooltipContent {
|
|
164
|
-
display: flex;
|
|
165
|
-
flex-direction: column;
|
|
166
|
-
gap: 0.625rem;
|
|
167
|
-
padding-bottom: 0.625rem;
|
|
168
|
-
}
|
|
169
|
-
.apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
170
|
-
margin-inline: 0.625rem;
|
|
171
|
-
}
|
|
172
|
-
.apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
|
|
173
|
-
font-weight: 600;
|
|
174
|
-
font-size: 0.875rem;
|
|
175
|
-
line-height: 1.25rem;
|
|
176
|
-
padding: 0.75rem 1.25rem;
|
|
177
|
-
border-bottom: 1px solid #d8dae5;
|
|
178
|
-
}
|
|
179
|
-
.apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
|
|
180
|
-
content: "*";
|
|
181
|
-
color: red;
|
|
182
|
-
transform: translateX(0.125rem);
|
|
183
42
|
}.methodAccordion {
|
|
184
43
|
border: none !important;
|
|
185
44
|
box-shadow: none !important;
|
|
@@ -508,83 +367,224 @@
|
|
|
508
367
|
}
|
|
509
368
|
.methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
|
|
510
369
|
background-color: #ebecf2;
|
|
511
|
-
}.
|
|
370
|
+
}.apiInfoForm {
|
|
371
|
+
display: grid;
|
|
372
|
+
padding: 1.25rem 1.875rem;
|
|
373
|
+
gap: 1.25rem;
|
|
374
|
+
}
|
|
375
|
+
.apiInfoForm .paramsTable .paramDescContainer {
|
|
512
376
|
display: flex;
|
|
513
377
|
}
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
378
|
+
.apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
|
|
379
|
+
height: inherit;
|
|
380
|
+
width: 1px;
|
|
381
|
+
background-color: #d8dae5;
|
|
517
382
|
}
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
background-color: #202f5b;
|
|
521
|
-
font-size: 0.875rem;
|
|
522
|
-
border-radius: 0.3125rem;
|
|
523
|
-
width: max-content;
|
|
524
|
-
max-width: 100%;
|
|
525
|
-
overflow-wrap: break-word;
|
|
526
|
-
word-break: break-word;
|
|
527
|
-
position: relative;
|
|
528
|
-
border: 1px solid #d8dae5;
|
|
529
|
-
z-index: 2;
|
|
383
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
|
|
384
|
+
stroke-width: 0.1;
|
|
530
385
|
}
|
|
531
|
-
.
|
|
532
|
-
|
|
533
|
-
|
|
386
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
|
|
387
|
+
padding: 0;
|
|
388
|
+
margin-right: 1.25rem;
|
|
534
389
|
}
|
|
535
|
-
.
|
|
536
|
-
|
|
390
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
|
|
391
|
+
display: flex;
|
|
392
|
+
align-items: center;
|
|
393
|
+
padding: 0;
|
|
394
|
+
font-size: 0.875rem;
|
|
537
395
|
}
|
|
538
|
-
.
|
|
539
|
-
|
|
396
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
397
|
+
margin-block: auto;
|
|
540
398
|
}
|
|
541
|
-
.
|
|
542
|
-
|
|
543
|
-
background-color: #3aaa35;
|
|
544
|
-
padding-inline: 0.625rem;
|
|
399
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
|
|
400
|
+
fill: #12131a;
|
|
545
401
|
}
|
|
546
|
-
.
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
line-height: 1.25rem;
|
|
550
|
-
padding: 0.625rem;
|
|
402
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
|
|
403
|
+
padding: 0;
|
|
404
|
+
border-width: 0 !important;
|
|
551
405
|
}
|
|
552
|
-
.
|
|
553
|
-
|
|
554
|
-
width: 1rem;
|
|
555
|
-
height: 1rem;
|
|
406
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
407
|
+
margin-block: auto;
|
|
556
408
|
}
|
|
557
|
-
.
|
|
558
|
-
|
|
559
|
-
border-width: 0.5rem 0.5rem 0 !important;
|
|
409
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
|
|
410
|
+
width: 1.125rem;
|
|
560
411
|
}
|
|
561
|
-
.
|
|
562
|
-
|
|
563
|
-
border-width: 0.5rem 0.5rem 0.5rem 0 !important;
|
|
412
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
|
|
413
|
+
margin-block: auto;
|
|
564
414
|
}
|
|
565
|
-
.
|
|
566
|
-
|
|
567
|
-
border-width: 0 0.5rem 0.5rem !important;
|
|
415
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
|
|
416
|
+
width: 1.125rem;
|
|
568
417
|
}
|
|
569
|
-
.
|
|
570
|
-
|
|
571
|
-
border-width: 0.5rem 0 0.5rem 0.5rem !important;
|
|
418
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
|
|
419
|
+
fill: #3aaa35;
|
|
572
420
|
}
|
|
573
|
-
.
|
|
574
|
-
|
|
421
|
+
.apiInfoForm .paramsTable .externalDocsLink {
|
|
422
|
+
font-size: 0.875rem;
|
|
423
|
+
line-height: 1.25rem;
|
|
424
|
+
cursor: pointer;
|
|
425
|
+
align-self: center;
|
|
426
|
+
margin-right: 2rem;
|
|
575
427
|
}
|
|
576
|
-
.
|
|
577
|
-
|
|
578
|
-
|
|
428
|
+
.apiInfoForm .paramsTable .editExternalDocs {
|
|
429
|
+
display: flex;
|
|
430
|
+
align-items: center;
|
|
431
|
+
padding-right: 0.625rem;
|
|
579
432
|
}
|
|
580
|
-
.
|
|
581
|
-
|
|
433
|
+
.apiInfoForm .paramsTable .editExternalDocs svg {
|
|
434
|
+
cursor: pointer;
|
|
582
435
|
}
|
|
583
|
-
.
|
|
584
|
-
|
|
436
|
+
.apiInfoForm .paramsTable .editExternalDocs svg path {
|
|
437
|
+
fill: #12131a;
|
|
585
438
|
}
|
|
586
|
-
.
|
|
587
|
-
|
|
439
|
+
.apiInfoForm .paramsTable .editDescTooltipContent {
|
|
440
|
+
display: flex;
|
|
441
|
+
flex-direction: column;
|
|
442
|
+
gap: 0.625rem;
|
|
443
|
+
padding-bottom: 0.625rem;
|
|
444
|
+
}
|
|
445
|
+
.apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
446
|
+
margin-inline: 0.625rem;
|
|
447
|
+
}
|
|
448
|
+
.apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
|
|
449
|
+
font-weight: 600;
|
|
450
|
+
font-size: 0.875rem;
|
|
451
|
+
line-height: 1.25rem;
|
|
452
|
+
padding: 0.75rem 1.25rem;
|
|
453
|
+
border-bottom: 1px solid #d8dae5;
|
|
454
|
+
}
|
|
455
|
+
.apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
|
|
456
|
+
content: "*";
|
|
457
|
+
color: red;
|
|
458
|
+
transform: translateX(0.125rem);
|
|
459
|
+
}
|
|
460
|
+
.apiInfoForm .apiDocRow {
|
|
461
|
+
display: grid;
|
|
462
|
+
grid-template-columns: 1fr 1fr;
|
|
463
|
+
gap: 1.25rem;
|
|
464
|
+
}
|
|
465
|
+
.apiInfoForm .apiInfoForm_tagsChips {
|
|
466
|
+
margin-top: -1.25rem;
|
|
467
|
+
}
|
|
468
|
+
.apiInfoForm .editDescTooltipContent {
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-direction: column;
|
|
471
|
+
gap: 0.625rem;
|
|
472
|
+
padding-bottom: 0.625rem;
|
|
473
|
+
}
|
|
474
|
+
.apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
475
|
+
margin-inline: 0.625rem;
|
|
476
|
+
}
|
|
477
|
+
.apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
|
|
478
|
+
font-weight: 600;
|
|
479
|
+
font-size: 0.875rem;
|
|
480
|
+
line-height: 1.25rem;
|
|
481
|
+
padding: 0.75rem 1.25rem;
|
|
482
|
+
border-bottom: 1px solid #d8dae5;
|
|
483
|
+
}
|
|
484
|
+
.apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
|
|
485
|
+
content: "*";
|
|
486
|
+
color: red;
|
|
487
|
+
transform: translateX(0.125rem);
|
|
488
|
+
}.containerTitleDrawer {
|
|
489
|
+
height: 64px;
|
|
490
|
+
min-height: 64px;
|
|
491
|
+
display: flex;
|
|
492
|
+
flex-direction: row;
|
|
493
|
+
justify-content: space-between;
|
|
494
|
+
align-items: center;
|
|
495
|
+
background-color: #f1f2f6;
|
|
496
|
+
padding: 0 30px 0 30px;
|
|
497
|
+
width: 100%;
|
|
498
|
+
}
|
|
499
|
+
.containerTitleDrawer span {
|
|
500
|
+
color: #12131a;
|
|
501
|
+
font-weight: 600;
|
|
502
|
+
font-size: 18px;
|
|
503
|
+
line-height: 25px;
|
|
504
|
+
letter-spacing: 0em;
|
|
505
|
+
}
|
|
506
|
+
.containerTitleDrawer svg path {
|
|
507
|
+
stroke: #000 !important;
|
|
508
|
+
}
|
|
509
|
+
.containerTitleDrawer .closeIcon {
|
|
510
|
+
cursor: pointer;
|
|
511
|
+
}.tooltip-custom-wrapper {
|
|
512
|
+
display: flex;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
[data-tippy-root] {
|
|
516
|
+
z-index: 2 !important;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.tippy-box {
|
|
520
|
+
background-color: #202f5b;
|
|
521
|
+
font-size: 0.875rem;
|
|
522
|
+
border-radius: 0.3125rem;
|
|
523
|
+
width: max-content;
|
|
524
|
+
max-width: 100%;
|
|
525
|
+
overflow-wrap: break-word;
|
|
526
|
+
word-break: break-word;
|
|
527
|
+
position: relative;
|
|
528
|
+
border: 1px solid #d8dae5;
|
|
529
|
+
z-index: 2;
|
|
530
|
+
}
|
|
531
|
+
.tippy-box.function .tippy-content {
|
|
532
|
+
background-color: #fff !important;
|
|
533
|
+
color: #000 !important;
|
|
534
|
+
}
|
|
535
|
+
.tippy-box.function[data-placement] > .tippy-arrow:before {
|
|
536
|
+
color: #fff !important;
|
|
537
|
+
}
|
|
538
|
+
.tippy-box.info .tippy-arrow {
|
|
539
|
+
color: #202f5b;
|
|
540
|
+
}
|
|
541
|
+
.tippy-box.success {
|
|
542
|
+
border-radius: 1.875rem;
|
|
543
|
+
background-color: #3aaa35;
|
|
544
|
+
padding-inline: 0.625rem;
|
|
545
|
+
}
|
|
546
|
+
.tippy-box .tippy-content {
|
|
547
|
+
text-align: justify;
|
|
548
|
+
font-size: 0.875rem;
|
|
549
|
+
line-height: 1.25rem;
|
|
550
|
+
padding: 0.625rem;
|
|
551
|
+
}
|
|
552
|
+
.tippy-box .tippy-arrow {
|
|
553
|
+
position: relative;
|
|
554
|
+
width: 1rem;
|
|
555
|
+
height: 1rem;
|
|
556
|
+
}
|
|
557
|
+
.tippy-box[data-placement^=top] .tippy-arrow:before {
|
|
558
|
+
bottom: -0.4375rem;
|
|
559
|
+
border-width: 0.5rem 0.5rem 0 !important;
|
|
560
|
+
}
|
|
561
|
+
.tippy-box[data-placement^=right] .tippy-arrow:before {
|
|
562
|
+
left: -0.4375rem;
|
|
563
|
+
border-width: 0.5rem 0.5rem 0.5rem 0 !important;
|
|
564
|
+
}
|
|
565
|
+
.tippy-box[data-placement^=bottom] .tippy-arrow:before {
|
|
566
|
+
top: -0.4375rem;
|
|
567
|
+
border-width: 0 0.5rem 0.5rem !important;
|
|
568
|
+
}
|
|
569
|
+
.tippy-box[data-placement^=left] .tippy-arrow:before {
|
|
570
|
+
right: -0.4375rem;
|
|
571
|
+
border-width: 0.5rem 0 0.5rem 0.5rem !important;
|
|
572
|
+
}
|
|
573
|
+
.tippy-box[data-placement^=bottom-start] .tippy-arrow {
|
|
574
|
+
transform: translate(0.937rem, 0) !important;
|
|
575
|
+
}
|
|
576
|
+
.tippy-box[data-placement^=bottom-end] .tippy-arrow {
|
|
577
|
+
margin-left: calc(100% - 1.937rem);
|
|
578
|
+
transform: translate(0, 0) !important;
|
|
579
|
+
}
|
|
580
|
+
.tippy-box[data-placement^=top-start] .tippy-arrow {
|
|
581
|
+
transform: translate(0.937rem, 0) !important;
|
|
582
|
+
}
|
|
583
|
+
.tippy-box[data-placement^=top-end] .tippy-arrow {
|
|
584
|
+
transform: translate(0.937rem, 0) !important;
|
|
585
|
+
}
|
|
586
|
+
.tippy-box.arrow-with-border {
|
|
587
|
+
border: 1px solid #d8dae5;
|
|
588
588
|
}
|
|
589
589
|
.tippy-box.arrow-with-border[data-placement] .tippy-arrow {
|
|
590
590
|
top: 1px;
|
|
@@ -911,6 +911,111 @@
|
|
|
911
911
|
width: 0.625rem;
|
|
912
912
|
aspect-ratio: 1/1;
|
|
913
913
|
border-radius: 100%;
|
|
914
|
+
}:root {
|
|
915
|
+
--white: #fff;
|
|
916
|
+
--Gray-5: #f1f2f6;
|
|
917
|
+
--Gray-10: #ebecf2;
|
|
918
|
+
--Gray-20: #d8dae5;
|
|
919
|
+
--Gray-30: #babdcc;
|
|
920
|
+
--Gray-40: #9a9eb2;
|
|
921
|
+
--Gray-50: #828699;
|
|
922
|
+
--Gray-60: #696c80;
|
|
923
|
+
--Gray-100: #12131a;
|
|
924
|
+
--black: #000;
|
|
925
|
+
--primary-static: #4d75d8;
|
|
926
|
+
--primary-hover: #7c9bea;
|
|
927
|
+
--primary-active: #2c4fa4;
|
|
928
|
+
--primary-disabled: #9a9eb2;
|
|
929
|
+
--secondary-static: #40e0d0;
|
|
930
|
+
--secondary-hover: #9efcf2;
|
|
931
|
+
--secondary-active: #2fa599;
|
|
932
|
+
--error-static: #da3f3f;
|
|
933
|
+
--error-hover: #e75d5d;
|
|
934
|
+
--error-active: #bb3232;
|
|
935
|
+
--success-static: #3aaa35;
|
|
936
|
+
--success-hover: #5cda56;
|
|
937
|
+
--success-active: #2a8a25;
|
|
938
|
+
--info-static: #c6c6c6;
|
|
939
|
+
--info-hover: #e4e4e4;
|
|
940
|
+
--info-active: #979797;
|
|
941
|
+
--warning-static: #faad14;
|
|
942
|
+
--warning-hover: #f9be4a;
|
|
943
|
+
--warning-active: #db9711;
|
|
944
|
+
--action-static: #142452;
|
|
945
|
+
--action-hover: #21387d;
|
|
946
|
+
--action-active: #000000;
|
|
947
|
+
--color-info-primary: #3a6cd1;
|
|
948
|
+
--primary-font-color: #142452;
|
|
949
|
+
--placeholder-font-color: #babdcc;
|
|
950
|
+
--warning-font-color: #ce2828;
|
|
951
|
+
--alert-error: #da3f3f;
|
|
952
|
+
--alert-light-error: #f4c5c5;
|
|
953
|
+
--alert-success: #3aaa35;
|
|
954
|
+
--alert-light-success: #c4e5c2;
|
|
955
|
+
--alert-info: #8eaaf1;
|
|
956
|
+
--alert-light-info: #c4d3f1;
|
|
957
|
+
--alert-warning: #faad14;
|
|
958
|
+
--alert-light-warning: #fde6b8;
|
|
959
|
+
--border-focus: #3a6cd1;
|
|
960
|
+
--tooltip-background-color: #202f5b;
|
|
961
|
+
--text-color-primary: #142452;
|
|
962
|
+
--text-color-secondary: #ffff;
|
|
963
|
+
--text-color-neutral: #828699;
|
|
964
|
+
--text-color-tertiary: #808080;
|
|
965
|
+
--text-color-note: #242424;
|
|
966
|
+
--text-color-quaternary: #142452;
|
|
967
|
+
--text-color-disabled: #ffff;
|
|
968
|
+
--background-color-white-primary: #fff;
|
|
969
|
+
--background-color-light-primary: #8eaaf1;
|
|
970
|
+
--background-color-white-secondary: #fff;
|
|
971
|
+
--background-color-primary-dark: #142452;
|
|
972
|
+
--background-color-gray-5: #f1f2f6;
|
|
973
|
+
--background-color-gray-30: #ebecf2;
|
|
974
|
+
--background-color-tertiary-light: #2c4fa4;
|
|
975
|
+
--background-color-gray-10: #f1f2f6;
|
|
976
|
+
--background-color-gray-40: #ebecf2;
|
|
977
|
+
--background-color-light-blue: #dfe7f8;
|
|
978
|
+
--border-color-primary: #babdcc;
|
|
979
|
+
--border-color-secondary: #d8dae5;
|
|
980
|
+
--border-color-neutral: #ebecf2;
|
|
981
|
+
--border-color-tertiary: #ebecf2;
|
|
982
|
+
--border-color-gray: #ebecf2;
|
|
983
|
+
--border-color-hover: #142452;
|
|
984
|
+
--border-color-active: #3a6cd1;
|
|
985
|
+
--icon-color-main: #142452;
|
|
986
|
+
--icon-color-secondary: #000;
|
|
987
|
+
--icon-color-quaternary: #babdcc;
|
|
988
|
+
--icon-color-disabled: #9a9eb2;
|
|
989
|
+
--link-btn-primary-color: #3a6cd1;
|
|
990
|
+
--button-color-static: #4d75d8;
|
|
991
|
+
--button-color-hover: #7c9bea;
|
|
992
|
+
--button-color-active: #2c4fa4;
|
|
993
|
+
--alert-natural: #c4d3f1;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.drawerItemContainer {
|
|
997
|
+
display: flex;
|
|
998
|
+
flex-direction: column;
|
|
999
|
+
}
|
|
1000
|
+
.drawerItemContainer .title {
|
|
1001
|
+
color: #000;
|
|
1002
|
+
font-weight: 600;
|
|
1003
|
+
font-size: 24px;
|
|
1004
|
+
line-height: 35px;
|
|
1005
|
+
margin-bottom: 3px;
|
|
1006
|
+
margin-top: 1.5rem;
|
|
1007
|
+
}
|
|
1008
|
+
.drawerItemContainer .text {
|
|
1009
|
+
color: #000;
|
|
1010
|
+
font-weight: 400;
|
|
1011
|
+
font-size: 24px;
|
|
1012
|
+
line-height: 25px;
|
|
1013
|
+
}
|
|
1014
|
+
.drawerItemContainer .color-green {
|
|
1015
|
+
color: var(--color-success);
|
|
1016
|
+
}
|
|
1017
|
+
.drawerItemContainer .color-red {
|
|
1018
|
+
color: var(--color-error);
|
|
914
1019
|
}.json-editor-container {
|
|
915
1020
|
overflow: hidden;
|
|
916
1021
|
border-bottom-right-radius: 0.3125rem;
|
|
@@ -1104,117 +1209,12 @@
|
|
|
1104
1209
|
--alert-natural: #c4d3f1;
|
|
1105
1210
|
}
|
|
1106
1211
|
|
|
1107
|
-
|
|
1212
|
+
#EnumButton {
|
|
1108
1213
|
display: flex;
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
font-weight: 600;
|
|
1114
|
-
font-size: 24px;
|
|
1115
|
-
line-height: 35px;
|
|
1116
|
-
margin-bottom: 3px;
|
|
1117
|
-
margin-top: 1.5rem;
|
|
1118
|
-
}
|
|
1119
|
-
.drawerItemContainer .text {
|
|
1120
|
-
color: #000;
|
|
1121
|
-
font-weight: 400;
|
|
1122
|
-
font-size: 24px;
|
|
1123
|
-
line-height: 25px;
|
|
1124
|
-
}
|
|
1125
|
-
.drawerItemContainer .color-green {
|
|
1126
|
-
color: var(--color-success);
|
|
1127
|
-
}
|
|
1128
|
-
.drawerItemContainer .color-red {
|
|
1129
|
-
color: var(--color-error);
|
|
1130
|
-
}:root {
|
|
1131
|
-
--white: #fff;
|
|
1132
|
-
--Gray-5: #f1f2f6;
|
|
1133
|
-
--Gray-10: #ebecf2;
|
|
1134
|
-
--Gray-20: #d8dae5;
|
|
1135
|
-
--Gray-30: #babdcc;
|
|
1136
|
-
--Gray-40: #9a9eb2;
|
|
1137
|
-
--Gray-50: #828699;
|
|
1138
|
-
--Gray-60: #696c80;
|
|
1139
|
-
--Gray-100: #12131a;
|
|
1140
|
-
--black: #000;
|
|
1141
|
-
--primary-static: #4d75d8;
|
|
1142
|
-
--primary-hover: #7c9bea;
|
|
1143
|
-
--primary-active: #2c4fa4;
|
|
1144
|
-
--primary-disabled: #9a9eb2;
|
|
1145
|
-
--secondary-static: #40e0d0;
|
|
1146
|
-
--secondary-hover: #9efcf2;
|
|
1147
|
-
--secondary-active: #2fa599;
|
|
1148
|
-
--error-static: #da3f3f;
|
|
1149
|
-
--error-hover: #e75d5d;
|
|
1150
|
-
--error-active: #bb3232;
|
|
1151
|
-
--success-static: #3aaa35;
|
|
1152
|
-
--success-hover: #5cda56;
|
|
1153
|
-
--success-active: #2a8a25;
|
|
1154
|
-
--info-static: #c6c6c6;
|
|
1155
|
-
--info-hover: #e4e4e4;
|
|
1156
|
-
--info-active: #979797;
|
|
1157
|
-
--warning-static: #faad14;
|
|
1158
|
-
--warning-hover: #f9be4a;
|
|
1159
|
-
--warning-active: #db9711;
|
|
1160
|
-
--action-static: #142452;
|
|
1161
|
-
--action-hover: #21387d;
|
|
1162
|
-
--action-active: #000000;
|
|
1163
|
-
--color-info-primary: #3a6cd1;
|
|
1164
|
-
--primary-font-color: #142452;
|
|
1165
|
-
--placeholder-font-color: #babdcc;
|
|
1166
|
-
--warning-font-color: #ce2828;
|
|
1167
|
-
--alert-error: #da3f3f;
|
|
1168
|
-
--alert-light-error: #f4c5c5;
|
|
1169
|
-
--alert-success: #3aaa35;
|
|
1170
|
-
--alert-light-success: #c4e5c2;
|
|
1171
|
-
--alert-info: #8eaaf1;
|
|
1172
|
-
--alert-light-info: #c4d3f1;
|
|
1173
|
-
--alert-warning: #faad14;
|
|
1174
|
-
--alert-light-warning: #fde6b8;
|
|
1175
|
-
--border-focus: #3a6cd1;
|
|
1176
|
-
--tooltip-background-color: #202f5b;
|
|
1177
|
-
--text-color-primary: #142452;
|
|
1178
|
-
--text-color-secondary: #ffff;
|
|
1179
|
-
--text-color-neutral: #828699;
|
|
1180
|
-
--text-color-tertiary: #808080;
|
|
1181
|
-
--text-color-note: #242424;
|
|
1182
|
-
--text-color-quaternary: #142452;
|
|
1183
|
-
--text-color-disabled: #ffff;
|
|
1184
|
-
--background-color-white-primary: #fff;
|
|
1185
|
-
--background-color-light-primary: #8eaaf1;
|
|
1186
|
-
--background-color-white-secondary: #fff;
|
|
1187
|
-
--background-color-primary-dark: #142452;
|
|
1188
|
-
--background-color-gray-5: #f1f2f6;
|
|
1189
|
-
--background-color-gray-30: #ebecf2;
|
|
1190
|
-
--background-color-tertiary-light: #2c4fa4;
|
|
1191
|
-
--background-color-gray-10: #f1f2f6;
|
|
1192
|
-
--background-color-gray-40: #ebecf2;
|
|
1193
|
-
--background-color-light-blue: #dfe7f8;
|
|
1194
|
-
--border-color-primary: #babdcc;
|
|
1195
|
-
--border-color-secondary: #d8dae5;
|
|
1196
|
-
--border-color-neutral: #ebecf2;
|
|
1197
|
-
--border-color-tertiary: #ebecf2;
|
|
1198
|
-
--border-color-gray: #ebecf2;
|
|
1199
|
-
--border-color-hover: #142452;
|
|
1200
|
-
--border-color-active: #3a6cd1;
|
|
1201
|
-
--icon-color-main: #142452;
|
|
1202
|
-
--icon-color-secondary: #000;
|
|
1203
|
-
--icon-color-quaternary: #babdcc;
|
|
1204
|
-
--icon-color-disabled: #9a9eb2;
|
|
1205
|
-
--link-btn-primary-color: #3a6cd1;
|
|
1206
|
-
--button-color-static: #4d75d8;
|
|
1207
|
-
--button-color-hover: #7c9bea;
|
|
1208
|
-
--button-color-active: #2c4fa4;
|
|
1209
|
-
--alert-natural: #c4d3f1;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
#EnumButton {
|
|
1213
|
-
display: flex;
|
|
1214
|
-
justify-content: center;
|
|
1215
|
-
align-items: center;
|
|
1216
|
-
border: 0.0375rem solid #babdcc;
|
|
1217
|
-
border-radius: 0.3125rem;
|
|
1214
|
+
justify-content: center;
|
|
1215
|
+
align-items: center;
|
|
1216
|
+
border: 0.0375rem solid #babdcc;
|
|
1217
|
+
border-radius: 0.3125rem;
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
1220
|
div.endBtnIcon {
|
|
@@ -1789,6 +1789,42 @@ div.endBtnIcon {
|
|
|
1789
1789
|
opacity: 1 !important;
|
|
1790
1790
|
backdrop-filter: blur(0.5rem);
|
|
1791
1791
|
background-color: rgba(0, 0, 0, 0.281) !important;
|
|
1792
|
+
}.codebox {
|
|
1793
|
+
border-radius: 0.25rem;
|
|
1794
|
+
overflow: hidden;
|
|
1795
|
+
}
|
|
1796
|
+
.codebox_header {
|
|
1797
|
+
display: flex;
|
|
1798
|
+
align-items: center;
|
|
1799
|
+
gap: 0.25rem;
|
|
1800
|
+
padding-left: 0.5rem;
|
|
1801
|
+
height: 1.75rem;
|
|
1802
|
+
border: 1px solid #bbbec5;
|
|
1803
|
+
border-top-right-radius: 0.25rem;
|
|
1804
|
+
border-top-left-radius: 0.25rem;
|
|
1805
|
+
}
|
|
1806
|
+
.codebox_header_themeToggle {
|
|
1807
|
+
width: 0.75rem;
|
|
1808
|
+
min-width: 0.75rem;
|
|
1809
|
+
aspect-ratio: 1/1;
|
|
1810
|
+
border: 1px solid transparent;
|
|
1811
|
+
border-radius: 100%;
|
|
1812
|
+
cursor: pointer;
|
|
1813
|
+
}
|
|
1814
|
+
.codebox_header_themeToggle_dark {
|
|
1815
|
+
background-color: #455162;
|
|
1816
|
+
border-color: #6b7280;
|
|
1817
|
+
}
|
|
1818
|
+
.codebox_header_themeToggle_light {
|
|
1819
|
+
background-color: #edf1fb;
|
|
1820
|
+
border-color: #6b7280;
|
|
1821
|
+
}
|
|
1822
|
+
.codebox_header_copyIcon {
|
|
1823
|
+
cursor: pointer;
|
|
1824
|
+
}
|
|
1825
|
+
.codebox :global(.custom-code-line),
|
|
1826
|
+
.codebox :global(.custom-code-line span) {
|
|
1827
|
+
font-family: "Cascadia Code", sans-serif;
|
|
1792
1828
|
}.apiDocsAside {
|
|
1793
1829
|
width: 22.5rem;
|
|
1794
1830
|
padding: 3rem 1.5rem;
|
|
@@ -1875,84 +1911,287 @@ div.endBtnIcon {
|
|
|
1875
1911
|
}
|
|
1876
1912
|
.apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
|
|
1877
1913
|
padding-right: 0.75rem;
|
|
1878
|
-
}
|
|
1879
|
-
|
|
1880
|
-
overflow: hidden;
|
|
1914
|
+
}main {
|
|
1915
|
+
padding: 2rem;
|
|
1881
1916
|
}
|
|
1882
|
-
.
|
|
1917
|
+
main .api-details-expanded .api-title {
|
|
1918
|
+
font-size: 3rem;
|
|
1919
|
+
font-weight: 600;
|
|
1920
|
+
letter-spacing: -1px;
|
|
1921
|
+
line-height: 3.5rem;
|
|
1922
|
+
margin-bottom: 0.752rem;
|
|
1923
|
+
color: #4d75d9;
|
|
1924
|
+
}
|
|
1925
|
+
main .api-details-expanded .test-button {
|
|
1926
|
+
margin-top: 1.25rem;
|
|
1927
|
+
margin-bottom: 3.125rem;
|
|
1883
1928
|
display: flex;
|
|
1884
1929
|
align-items: center;
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
height: 1.75rem;
|
|
1888
|
-
border: 1px solid #bbbec5;
|
|
1889
|
-
border-top-right-radius: 0.25rem;
|
|
1890
|
-
border-top-left-radius: 0.25rem;
|
|
1930
|
+
justify-content: space-between;
|
|
1931
|
+
gap: 0.5rem;
|
|
1891
1932
|
}
|
|
1892
|
-
.
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1933
|
+
main .api-details-expanded .test-button .back-button {
|
|
1934
|
+
display: inline-flex;
|
|
1935
|
+
align-items: center;
|
|
1936
|
+
justify-content: center;
|
|
1937
|
+
width: 2.75rem;
|
|
1938
|
+
height: 2.75rem;
|
|
1939
|
+
border: 1px solid #3b82f6;
|
|
1940
|
+
border-radius: 0.5rem;
|
|
1941
|
+
background-color: white;
|
|
1942
|
+
color: #3b82f6;
|
|
1898
1943
|
cursor: pointer;
|
|
1944
|
+
transition: background-color 0.2s ease;
|
|
1899
1945
|
}
|
|
1900
|
-
.
|
|
1901
|
-
|
|
1902
|
-
border-color: #6b7280;
|
|
1903
|
-
}
|
|
1904
|
-
.codebox_header_themeToggle_light {
|
|
1905
|
-
background-color: #edf1fb;
|
|
1906
|
-
border-color: #6b7280;
|
|
1946
|
+
main .api-details-expanded .test-button .back-button svg {
|
|
1947
|
+
stroke-width: 2;
|
|
1907
1948
|
}
|
|
1908
|
-
.
|
|
1909
|
-
|
|
1949
|
+
main .api-details-expanded .test-button .back-button:hover {
|
|
1950
|
+
background-color: #eff6ff;
|
|
1910
1951
|
}
|
|
1911
|
-
.
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
padding:
|
|
1952
|
+
main .api-details-expanded .test-button .disabled {
|
|
1953
|
+
background: #f0f1f2;
|
|
1954
|
+
color: #9ca1aa;
|
|
1955
|
+
cursor: not-allowed;
|
|
1956
|
+
padding: 0.375rem 1rem;
|
|
1957
|
+
border-radius: 6px;
|
|
1958
|
+
font-size: 14px;
|
|
1959
|
+
border: 1px #b8bfca solid;
|
|
1960
|
+
width: 7.56rem;
|
|
1961
|
+
height: 2.75rem;
|
|
1962
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
1916
1963
|
}
|
|
1917
|
-
.api-details-
|
|
1918
|
-
font-size: 1.2rem;
|
|
1964
|
+
main .api-details-expanded h3 {
|
|
1919
1965
|
color: #616874;
|
|
1920
|
-
font-weight: 400;
|
|
1921
1966
|
font-size: 1.125rem;
|
|
1967
|
+
font-weight: 400;
|
|
1922
1968
|
letter-spacing: 0px;
|
|
1923
1969
|
line-height: 1.5rem;
|
|
1924
|
-
|
|
1925
|
-
.api-details-page .api-title {
|
|
1926
|
-
font-size: 2rem;
|
|
1927
|
-
font-weight: 600;
|
|
1928
|
-
color: #4d75d9;
|
|
1929
|
-
font-size: 3rem;
|
|
1930
|
-
letter-spacing: -1px;
|
|
1970
|
+
margin-top: 1.5rem;
|
|
1931
1971
|
margin-bottom: 0.5rem;
|
|
1932
1972
|
}
|
|
1933
|
-
.api-details-
|
|
1934
|
-
|
|
1973
|
+
main .api-details-expanded .url-box {
|
|
1974
|
+
height: 1.75rem;
|
|
1975
|
+
justify-content: space-between;
|
|
1976
|
+
background-color: #edf1fb !important;
|
|
1977
|
+
}
|
|
1978
|
+
main .api-details-expanded .url-text {
|
|
1935
1979
|
color: #3b3f46;
|
|
1936
|
-
font-
|
|
1980
|
+
font-size: 1.25rem;
|
|
1937
1981
|
letter-spacing: 0px;
|
|
1938
1982
|
line-height: 1.75rem;
|
|
1939
1983
|
}
|
|
1940
|
-
.api-details-
|
|
1941
|
-
|
|
1942
|
-
width: 50%;
|
|
1943
|
-
}
|
|
1944
|
-
.api-details-page .custom-url-input .input-label {
|
|
1945
|
-
display: block;
|
|
1946
|
-
margin-bottom: 0.5rem;
|
|
1947
|
-
font-size: 0.875rem;
|
|
1984
|
+
main .api-details-expanded .method-label {
|
|
1985
|
+
font-size: 0.924rem;
|
|
1948
1986
|
font-weight: 600;
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1987
|
+
padding: 0.125rem 0.5rem;
|
|
1988
|
+
border-radius: 0.375rem;
|
|
1989
|
+
text-transform: uppercase;
|
|
1990
|
+
color: #3aaa35;
|
|
1991
|
+
text-decoration: underline;
|
|
1992
|
+
}
|
|
1993
|
+
main .api-details-expanded .method-label.get {
|
|
1994
|
+
color: #3a6cd1;
|
|
1995
|
+
}
|
|
1996
|
+
main .api-details-expanded .method-label.post {
|
|
1997
|
+
color: #3aaa35;
|
|
1998
|
+
}
|
|
1999
|
+
main .api-details-expanded .method-label.put {
|
|
2000
|
+
color: #faad14;
|
|
2001
|
+
}
|
|
2002
|
+
main .api-details-expanded .method-label.patch {
|
|
2003
|
+
color: #58e2c2;
|
|
2004
|
+
}
|
|
2005
|
+
main .api-details-expanded .method-label.delete {
|
|
2006
|
+
color: #da3f3f;
|
|
2007
|
+
}
|
|
2008
|
+
main .api-details-expanded .method-label.head {
|
|
2009
|
+
color: #9461c9;
|
|
2010
|
+
}
|
|
2011
|
+
main .api-details-expanded .method-label.trace {
|
|
2012
|
+
color: #ffa28f;
|
|
2013
|
+
}
|
|
2014
|
+
main .api-details-expanded .method-label.options {
|
|
2015
|
+
color: #495d97;
|
|
2016
|
+
}
|
|
2017
|
+
main .api-details-expanded .url-box {
|
|
2018
|
+
background-color: #f3f4f6;
|
|
2019
|
+
padding: 0.375rem 0.75rem;
|
|
2020
|
+
border-radius: 0.5rem;
|
|
2021
|
+
display: flex;
|
|
2022
|
+
align-items: center;
|
|
2023
|
+
gap: 0.5rem;
|
|
2024
|
+
font-size: 14px;
|
|
2025
|
+
flex: 1;
|
|
2026
|
+
height: 2.8rem;
|
|
2027
|
+
margin-bottom: 1.5rem;
|
|
2028
|
+
}
|
|
2029
|
+
main .api-details-expanded .api-desc {
|
|
2030
|
+
color: #6b7280;
|
|
2031
|
+
margin: 1.5rem 0;
|
|
2032
|
+
}
|
|
2033
|
+
main .api-details-expanded .head-table-label {
|
|
2034
|
+
color: #3b3f46 !important;
|
|
2035
|
+
letter-spacing: 0px;
|
|
2036
|
+
font-weight: 400 !important;
|
|
2037
|
+
line-height: 1rem;
|
|
2038
|
+
}
|
|
2039
|
+
main .api-details-expanded .request-tabs {
|
|
2040
|
+
display: flex;
|
|
2041
|
+
gap: 0.5rem;
|
|
2042
|
+
margin-bottom: 0.75rem;
|
|
2043
|
+
}
|
|
2044
|
+
main .api-details-expanded .tab {
|
|
2045
|
+
background: white;
|
|
2046
|
+
border: 1px solid #d1d3d8;
|
|
2047
|
+
padding: 0.375rem 0.75rem;
|
|
2048
|
+
border-radius: 6px;
|
|
2049
|
+
cursor: pointer;
|
|
2050
|
+
font-size: 0.875rem;
|
|
2051
|
+
color: #000000;
|
|
2052
|
+
display: flex;
|
|
2053
|
+
align-items: center;
|
|
2054
|
+
gap: 0.375rem;
|
|
2055
|
+
}
|
|
2056
|
+
main .api-details-expanded .tab {
|
|
2057
|
+
background: white;
|
|
2058
|
+
border: 1px solid #d1d3d8;
|
|
2059
|
+
padding: 0.375rem 0.75rem;
|
|
2060
|
+
border-radius: 6px;
|
|
2061
|
+
cursor: pointer;
|
|
2062
|
+
font-size: 0.875rem;
|
|
2063
|
+
color: #000000;
|
|
2064
|
+
display: flex;
|
|
2065
|
+
align-items: center;
|
|
2066
|
+
gap: 0.375rem;
|
|
2067
|
+
}
|
|
2068
|
+
main .api-details-expanded .tab.active {
|
|
2069
|
+
background-color: #e5edff;
|
|
2070
|
+
border-color: #4d75d9;
|
|
2071
|
+
color: #000000;
|
|
2072
|
+
font-weight: 400;
|
|
2073
|
+
}
|
|
2074
|
+
main .api-details-expanded .icon-left {
|
|
2075
|
+
width: 0.875rem;
|
|
2076
|
+
height: 0.875rem;
|
|
2077
|
+
}
|
|
2078
|
+
main .api-details-expanded .table-wrapper {
|
|
2079
|
+
overflow-x: auto;
|
|
2080
|
+
border: 1px solid #e5e7eb;
|
|
2081
|
+
border-radius: 0.8rem;
|
|
2082
|
+
background: white;
|
|
2083
|
+
border: 1px #bbbec5 solid;
|
|
2084
|
+
margin-bottom: 2rem;
|
|
2085
|
+
}
|
|
2086
|
+
main .api-details-expanded .param-table {
|
|
2087
|
+
width: 100%;
|
|
2088
|
+
border-collapse: collapse;
|
|
2089
|
+
font-size: 0.875rem;
|
|
2090
|
+
}
|
|
2091
|
+
main .api-details-expanded .param-table .desc-cell {
|
|
2092
|
+
position: relative;
|
|
2093
|
+
max-width: 20rem;
|
|
2094
|
+
padding-right: 1.5rem;
|
|
2095
|
+
}
|
|
2096
|
+
main .api-details-expanded .param-table .desc-text {
|
|
2097
|
+
white-space: nowrap;
|
|
2098
|
+
overflow: hidden;
|
|
2099
|
+
text-overflow: ellipsis;
|
|
2100
|
+
max-width: 90%;
|
|
2101
|
+
}
|
|
2102
|
+
main .api-details-expanded .param-table .desc-text.expanded {
|
|
2103
|
+
white-space: normal;
|
|
2104
|
+
}
|
|
2105
|
+
main .api-details-expanded .param-table .desc-toggle {
|
|
2106
|
+
position: absolute;
|
|
2107
|
+
right: 0.5rem;
|
|
2108
|
+
top: 50%;
|
|
2109
|
+
transform: translateY(-50%);
|
|
2110
|
+
background: none;
|
|
2111
|
+
border: none;
|
|
2112
|
+
cursor: pointer;
|
|
2113
|
+
}
|
|
2114
|
+
main .api-details-expanded .param-table .desc-toggle svg {
|
|
2115
|
+
transition: transform 0.2s ease;
|
|
2116
|
+
}
|
|
2117
|
+
main .api-details-expanded .param-table .desc-toggle .rotated {
|
|
2118
|
+
transform: rotate(180deg);
|
|
2119
|
+
}
|
|
2120
|
+
main .api-details-expanded .param-table th,
|
|
2121
|
+
main .api-details-expanded .param-table td {
|
|
2122
|
+
padding: 10px;
|
|
2123
|
+
border-bottom: 1px solid #bbbec5;
|
|
2124
|
+
text-align: left;
|
|
2125
|
+
color: #3b3f46;
|
|
2126
|
+
}
|
|
2127
|
+
main .api-details-expanded .param-table th {
|
|
2128
|
+
background: #edf1fb;
|
|
2129
|
+
font-weight: 600;
|
|
2130
|
+
}
|
|
2131
|
+
main .api-details-expanded .response-status {
|
|
2132
|
+
display: flex;
|
|
2133
|
+
align-items: center;
|
|
2134
|
+
justify-content: end;
|
|
2135
|
+
gap: 0.375rem;
|
|
2136
|
+
font-size: 0.875rem;
|
|
2137
|
+
color: green;
|
|
2138
|
+
margin-bottom: 0.75rem;
|
|
2139
|
+
}
|
|
2140
|
+
main .api-details-expanded .response-drop {
|
|
2141
|
+
width: 10rem;
|
|
2142
|
+
justify-content: end;
|
|
2143
|
+
}
|
|
2144
|
+
main .api-details-expanded .response-drop-test {
|
|
2145
|
+
justify-content: end !important;
|
|
2146
|
+
align-items: end !important;
|
|
2147
|
+
align-content: end !important;
|
|
2148
|
+
}
|
|
2149
|
+
main .api-details-expanded .copy-icon {
|
|
2150
|
+
cursor: pointer;
|
|
2151
|
+
width: 1.5rem;
|
|
2152
|
+
height: 1.5rem;
|
|
2153
|
+
}.api-details-page {
|
|
2154
|
+
padding: 2rem;
|
|
2155
|
+
}
|
|
2156
|
+
.api-details-page .welcome {
|
|
2157
|
+
font-size: 1.2rem;
|
|
2158
|
+
color: #616874;
|
|
2159
|
+
font-weight: 400;
|
|
2160
|
+
font-size: 1.125rem;
|
|
2161
|
+
letter-spacing: 0px;
|
|
2162
|
+
line-height: 1.5rem;
|
|
2163
|
+
}
|
|
2164
|
+
.api-details-page .api-title {
|
|
2165
|
+
font-size: 2rem;
|
|
2166
|
+
font-weight: 600;
|
|
2167
|
+
color: #4d75d9;
|
|
2168
|
+
font-size: 3rem;
|
|
2169
|
+
letter-spacing: -1px;
|
|
2170
|
+
margin-bottom: 0.5rem;
|
|
2171
|
+
}
|
|
2172
|
+
.api-details-page .api-version {
|
|
2173
|
+
font-size: 1.25rem;
|
|
2174
|
+
color: #3b3f46;
|
|
2175
|
+
font-weight: 400;
|
|
2176
|
+
letter-spacing: 0px;
|
|
2177
|
+
line-height: 1.75rem;
|
|
2178
|
+
}
|
|
2179
|
+
.api-details-page .custom-url-input {
|
|
2180
|
+
margin-top: 1.5rem;
|
|
2181
|
+
width: 50%;
|
|
2182
|
+
}
|
|
2183
|
+
.api-details-page .custom-url-input .input-label {
|
|
2184
|
+
display: block;
|
|
2185
|
+
margin-bottom: 0.5rem;
|
|
2186
|
+
font-size: 0.875rem;
|
|
2187
|
+
font-weight: 600;
|
|
2188
|
+
color: #4d4f5c;
|
|
2189
|
+
}
|
|
2190
|
+
.api-details-page .custom-url-input .input-wrapper {
|
|
2191
|
+
display: flex;
|
|
2192
|
+
align-items: center;
|
|
2193
|
+
background-color: #edf1fb;
|
|
2194
|
+
border: 1px solid #fff;
|
|
1956
2195
|
border-radius: 0.375rem;
|
|
1957
2196
|
padding: 0 0.75rem;
|
|
1958
2197
|
}
|
|
@@ -2004,6 +2243,7 @@ div.endBtnIcon {
|
|
|
2004
2243
|
font-size: 0.75rem;
|
|
2005
2244
|
letter-spacing: 0px;
|
|
2006
2245
|
margin-left: 0.5rem;
|
|
2246
|
+
cursor: pointer;
|
|
2007
2247
|
}
|
|
2008
2248
|
.api-details-page .section-title {
|
|
2009
2249
|
margin-top: 2rem;
|
|
@@ -2161,243 +2401,4 @@ div.endBtnIcon {
|
|
|
2161
2401
|
font-size: 0.875rem;
|
|
2162
2402
|
color: #4d75d9;
|
|
2163
2403
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2509803922);
|
|
2164
|
-
}main {
|
|
2165
|
-
padding: 2rem;
|
|
2166
|
-
}
|
|
2167
|
-
main .api-details-expanded .api-title {
|
|
2168
|
-
font-size: 3rem;
|
|
2169
|
-
font-weight: 600;
|
|
2170
|
-
letter-spacing: -1px;
|
|
2171
|
-
line-height: 3.5rem;
|
|
2172
|
-
margin-bottom: 0.752rem;
|
|
2173
|
-
color: #4d75d9;
|
|
2174
|
-
}
|
|
2175
|
-
main .api-details-expanded .test-button {
|
|
2176
|
-
margin-top: 1.25rem;
|
|
2177
|
-
margin-bottom: 3.125rem;
|
|
2178
|
-
display: flex;
|
|
2179
|
-
align-items: center;
|
|
2180
|
-
justify-content: space-between;
|
|
2181
|
-
gap: 0.5rem;
|
|
2182
|
-
}
|
|
2183
|
-
main .api-details-expanded .test-button .back-button {
|
|
2184
|
-
display: inline-flex;
|
|
2185
|
-
align-items: center;
|
|
2186
|
-
justify-content: center;
|
|
2187
|
-
width: 2.75rem;
|
|
2188
|
-
height: 2.75rem;
|
|
2189
|
-
border: 1px solid #3b82f6;
|
|
2190
|
-
border-radius: 0.5rem;
|
|
2191
|
-
background-color: white;
|
|
2192
|
-
color: #3b82f6;
|
|
2193
|
-
cursor: pointer;
|
|
2194
|
-
transition: background-color 0.2s ease;
|
|
2195
|
-
}
|
|
2196
|
-
main .api-details-expanded .test-button .back-button svg {
|
|
2197
|
-
stroke-width: 2;
|
|
2198
|
-
}
|
|
2199
|
-
main .api-details-expanded .test-button .back-button:hover {
|
|
2200
|
-
background-color: #eff6ff;
|
|
2201
|
-
}
|
|
2202
|
-
main .api-details-expanded .test-button .disabled {
|
|
2203
|
-
background: #f0f1f2;
|
|
2204
|
-
color: #9ca1aa;
|
|
2205
|
-
cursor: not-allowed;
|
|
2206
|
-
padding: 0.375rem 1rem;
|
|
2207
|
-
border-radius: 6px;
|
|
2208
|
-
font-size: 14px;
|
|
2209
|
-
border: 1px #b8bfca solid;
|
|
2210
|
-
width: 7.56rem;
|
|
2211
|
-
height: 2.75rem;
|
|
2212
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
2213
|
-
}
|
|
2214
|
-
main .api-details-expanded h3 {
|
|
2215
|
-
color: #616874;
|
|
2216
|
-
font-size: 1.125rem;
|
|
2217
|
-
font-weight: 400;
|
|
2218
|
-
letter-spacing: 0px;
|
|
2219
|
-
line-height: 1.5rem;
|
|
2220
|
-
margin-top: 1.5rem;
|
|
2221
|
-
margin-bottom: 0.5rem;
|
|
2222
|
-
}
|
|
2223
|
-
main .api-details-expanded .url-box {
|
|
2224
|
-
height: 1.75rem;
|
|
2225
|
-
justify-content: space-between;
|
|
2226
|
-
background-color: #edf1fb !important;
|
|
2227
|
-
}
|
|
2228
|
-
main .api-details-expanded .url-text {
|
|
2229
|
-
color: #3b3f46;
|
|
2230
|
-
font-size: 1.25rem;
|
|
2231
|
-
letter-spacing: 0px;
|
|
2232
|
-
line-height: 1.75rem;
|
|
2233
|
-
}
|
|
2234
|
-
main .api-details-expanded .method-label {
|
|
2235
|
-
font-size: 0.924rem;
|
|
2236
|
-
font-weight: 600;
|
|
2237
|
-
padding: 0.125rem 0.5rem;
|
|
2238
|
-
border-radius: 0.375rem;
|
|
2239
|
-
text-transform: uppercase;
|
|
2240
|
-
color: #3aaa35;
|
|
2241
|
-
text-decoration: underline;
|
|
2242
|
-
}
|
|
2243
|
-
main .api-details-expanded .method-label.get {
|
|
2244
|
-
color: #3a6cd1;
|
|
2245
|
-
}
|
|
2246
|
-
main .api-details-expanded .method-label.post {
|
|
2247
|
-
color: #3aaa35;
|
|
2248
|
-
}
|
|
2249
|
-
main .api-details-expanded .method-label.put {
|
|
2250
|
-
color: #faad14;
|
|
2251
|
-
}
|
|
2252
|
-
main .api-details-expanded .method-label.patch {
|
|
2253
|
-
color: #58e2c2;
|
|
2254
|
-
}
|
|
2255
|
-
main .api-details-expanded .method-label.delete {
|
|
2256
|
-
color: #da3f3f;
|
|
2257
|
-
}
|
|
2258
|
-
main .api-details-expanded .method-label.head {
|
|
2259
|
-
color: #9461c9;
|
|
2260
|
-
}
|
|
2261
|
-
main .api-details-expanded .method-label.trace {
|
|
2262
|
-
color: #ffa28f;
|
|
2263
|
-
}
|
|
2264
|
-
main .api-details-expanded .method-label.options {
|
|
2265
|
-
color: #495d97;
|
|
2266
|
-
}
|
|
2267
|
-
main .api-details-expanded .url-box {
|
|
2268
|
-
background-color: #f3f4f6;
|
|
2269
|
-
padding: 0.375rem 0.75rem;
|
|
2270
|
-
border-radius: 0.5rem;
|
|
2271
|
-
display: flex;
|
|
2272
|
-
align-items: center;
|
|
2273
|
-
gap: 0.5rem;
|
|
2274
|
-
font-size: 14px;
|
|
2275
|
-
flex: 1;
|
|
2276
|
-
height: 2.8rem;
|
|
2277
|
-
margin-bottom: 1.5rem;
|
|
2278
|
-
}
|
|
2279
|
-
main .api-details-expanded .api-desc {
|
|
2280
|
-
color: #6b7280;
|
|
2281
|
-
margin: 1.5rem 0;
|
|
2282
|
-
}
|
|
2283
|
-
main .api-details-expanded .head-table-label {
|
|
2284
|
-
color: #3b3f46 !important;
|
|
2285
|
-
letter-spacing: 0px;
|
|
2286
|
-
font-weight: 400 !important;
|
|
2287
|
-
line-height: 1rem;
|
|
2288
|
-
}
|
|
2289
|
-
main .api-details-expanded .request-tabs {
|
|
2290
|
-
display: flex;
|
|
2291
|
-
gap: 0.5rem;
|
|
2292
|
-
margin-bottom: 0.75rem;
|
|
2293
|
-
}
|
|
2294
|
-
main .api-details-expanded .tab {
|
|
2295
|
-
background: white;
|
|
2296
|
-
border: 1px solid #d1d3d8;
|
|
2297
|
-
padding: 0.375rem 0.75rem;
|
|
2298
|
-
border-radius: 6px;
|
|
2299
|
-
cursor: pointer;
|
|
2300
|
-
font-size: 0.875rem;
|
|
2301
|
-
color: #000000;
|
|
2302
|
-
display: flex;
|
|
2303
|
-
align-items: center;
|
|
2304
|
-
gap: 0.375rem;
|
|
2305
|
-
}
|
|
2306
|
-
main .api-details-expanded .tab {
|
|
2307
|
-
background: white;
|
|
2308
|
-
border: 1px solid #d1d3d8;
|
|
2309
|
-
padding: 0.375rem 0.75rem;
|
|
2310
|
-
border-radius: 6px;
|
|
2311
|
-
cursor: pointer;
|
|
2312
|
-
font-size: 0.875rem;
|
|
2313
|
-
color: #000000;
|
|
2314
|
-
display: flex;
|
|
2315
|
-
align-items: center;
|
|
2316
|
-
gap: 0.375rem;
|
|
2317
|
-
}
|
|
2318
|
-
main .api-details-expanded .tab.active {
|
|
2319
|
-
background-color: #e5edff;
|
|
2320
|
-
border-color: #4d75d9;
|
|
2321
|
-
color: #000000;
|
|
2322
|
-
font-weight: 400;
|
|
2323
|
-
}
|
|
2324
|
-
main .api-details-expanded .icon-left {
|
|
2325
|
-
width: 0.875rem;
|
|
2326
|
-
height: 0.875rem;
|
|
2327
|
-
}
|
|
2328
|
-
main .api-details-expanded .table-wrapper {
|
|
2329
|
-
overflow-x: auto;
|
|
2330
|
-
border: 1px solid #e5e7eb;
|
|
2331
|
-
border-radius: 0.8rem;
|
|
2332
|
-
background: white;
|
|
2333
|
-
border: 1px #bbbec5 solid;
|
|
2334
|
-
margin-bottom: 2rem;
|
|
2335
|
-
}
|
|
2336
|
-
main .api-details-expanded .param-table {
|
|
2337
|
-
width: 100%;
|
|
2338
|
-
border-collapse: collapse;
|
|
2339
|
-
font-size: 0.875rem;
|
|
2340
|
-
}
|
|
2341
|
-
main .api-details-expanded .param-table .desc-cell {
|
|
2342
|
-
position: relative;
|
|
2343
|
-
max-width: 20rem;
|
|
2344
|
-
padding-right: 1.5rem;
|
|
2345
|
-
}
|
|
2346
|
-
main .api-details-expanded .param-table .desc-text {
|
|
2347
|
-
white-space: nowrap;
|
|
2348
|
-
overflow: hidden;
|
|
2349
|
-
text-overflow: ellipsis;
|
|
2350
|
-
max-width: 90%;
|
|
2351
|
-
}
|
|
2352
|
-
main .api-details-expanded .param-table .desc-text.expanded {
|
|
2353
|
-
white-space: normal;
|
|
2354
|
-
}
|
|
2355
|
-
main .api-details-expanded .param-table .desc-toggle {
|
|
2356
|
-
position: absolute;
|
|
2357
|
-
right: 0.5rem;
|
|
2358
|
-
top: 50%;
|
|
2359
|
-
transform: translateY(-50%);
|
|
2360
|
-
background: none;
|
|
2361
|
-
border: none;
|
|
2362
|
-
cursor: pointer;
|
|
2363
|
-
}
|
|
2364
|
-
main .api-details-expanded .param-table .desc-toggle svg {
|
|
2365
|
-
transition: transform 0.2s ease;
|
|
2366
|
-
}
|
|
2367
|
-
main .api-details-expanded .param-table .desc-toggle .rotated {
|
|
2368
|
-
transform: rotate(180deg);
|
|
2369
|
-
}
|
|
2370
|
-
main .api-details-expanded .param-table th,
|
|
2371
|
-
main .api-details-expanded .param-table td {
|
|
2372
|
-
padding: 10px;
|
|
2373
|
-
border-bottom: 1px solid #bbbec5;
|
|
2374
|
-
text-align: left;
|
|
2375
|
-
color: #3b3f46;
|
|
2376
|
-
}
|
|
2377
|
-
main .api-details-expanded .param-table th {
|
|
2378
|
-
background: #edf1fb;
|
|
2379
|
-
font-weight: 600;
|
|
2380
|
-
}
|
|
2381
|
-
main .api-details-expanded .response-status {
|
|
2382
|
-
display: flex;
|
|
2383
|
-
align-items: center;
|
|
2384
|
-
justify-content: end;
|
|
2385
|
-
gap: 0.375rem;
|
|
2386
|
-
font-size: 0.875rem;
|
|
2387
|
-
color: green;
|
|
2388
|
-
margin-bottom: 0.75rem;
|
|
2389
|
-
}
|
|
2390
|
-
main .api-details-expanded .response-drop {
|
|
2391
|
-
width: 10rem;
|
|
2392
|
-
justify-content: end;
|
|
2393
|
-
}
|
|
2394
|
-
main .api-details-expanded .response-drop-test {
|
|
2395
|
-
justify-content: end !important;
|
|
2396
|
-
align-items: end !important;
|
|
2397
|
-
align-content: end !important;
|
|
2398
|
-
}
|
|
2399
|
-
main .api-details-expanded .copy-icon {
|
|
2400
|
-
cursor: pointer;
|
|
2401
|
-
width: 1.5rem;
|
|
2402
|
-
height: 1.5rem;
|
|
2403
2404
|
}
|