@apify/docs-theme 1.0.33 → 1.0.35
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 +1 -1
- package/src/theme/custom.css +62 -5
package/package.json
CHANGED
package/src/theme/custom.css
CHANGED
|
@@ -294,6 +294,31 @@ header.hero div[class^=heroButtons] {
|
|
|
294
294
|
justify-content: inherit;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
+
article {
|
|
298
|
+
margin-left: 15px;
|
|
299
|
+
margin-right: 15px;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.markdown blockquote {
|
|
303
|
+
--ifm-alert-background-color: var(--ifm-color-info-contrast-background);
|
|
304
|
+
--ifm-alert-background-color-highlight: rgba(84,199,236,.15);
|
|
305
|
+
--ifm-alert-foreground-color: var(--ifm-color-info-contrast-foreground);
|
|
306
|
+
--ifm-alert-border-color: var(--ifm-color-info-dark);
|
|
307
|
+
--ifm-code-background: var(--ifm-alert-background-color-highlight);
|
|
308
|
+
--ifm-link-color: var(--ifm-alert-foreground-color);
|
|
309
|
+
--ifm-link-hover-color: var(--ifm-alert-foreground-color);
|
|
310
|
+
--ifm-link-decoration: underline;
|
|
311
|
+
--ifm-tabs-color: var(--ifm-alert-foreground-color);
|
|
312
|
+
--ifm-tabs-color-active: var(--ifm-alert-foreground-color);
|
|
313
|
+
--ifm-tabs-color-active-border: var(--ifm-alert-border-color);
|
|
314
|
+
background-color: var(--ifm-alert-background-color);
|
|
315
|
+
border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
|
|
316
|
+
border-left-width: var(--ifm-alert-border-left-width);
|
|
317
|
+
border-radius: var(--ifm-alert-border-radius);
|
|
318
|
+
box-shadow: var(--ifm-alert-shadow);
|
|
319
|
+
padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
|
|
320
|
+
}
|
|
321
|
+
|
|
297
322
|
article .card h2 {
|
|
298
323
|
margin-top: 0;
|
|
299
324
|
}
|
|
@@ -313,6 +338,14 @@ article .card h2 {
|
|
|
313
338
|
float: right;
|
|
314
339
|
}
|
|
315
340
|
|
|
341
|
+
.menu__caret {
|
|
342
|
+
transform: scale(.7);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
aside button[class*="collapseSidebarButton"] svg {
|
|
346
|
+
transform: scale(.7) rotate(180deg);
|
|
347
|
+
}
|
|
348
|
+
|
|
316
349
|
.table-of-contents__link {
|
|
317
350
|
height: 20px;
|
|
318
351
|
}
|
|
@@ -412,10 +445,13 @@ html.plugin-docs .theme-doc-markdown h3 {
|
|
|
412
445
|
.theme-doc-sidebar-menu .menu__link,
|
|
413
446
|
.theme-doc-toc-desktop .table-of-contents .toc-highlight {
|
|
414
447
|
height: auto;
|
|
415
|
-
color: #6f7490;
|
|
416
448
|
background: none;
|
|
417
449
|
}
|
|
418
450
|
|
|
451
|
+
.menu__list-item:not(:first-child) {
|
|
452
|
+
margin-top: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
419
455
|
.theme-doc-sidebar-menu .menu__link:hover {
|
|
420
456
|
background: inherit;
|
|
421
457
|
}
|
|
@@ -496,10 +532,6 @@ div[class*="searchBox"] {
|
|
|
496
532
|
padding: 4px 8px;
|
|
497
533
|
}
|
|
498
534
|
|
|
499
|
-
.menu__list-item {
|
|
500
|
-
min-height: 33px;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
535
|
.menu__link, .menu__list-item > .navbar__item {
|
|
504
536
|
display: flex;
|
|
505
537
|
}
|
|
@@ -601,3 +633,28 @@ html[data-theme='dark'] .actionLink:hover::after {
|
|
|
601
633
|
background-image: url('/img/arrow-right-primary.svg');
|
|
602
634
|
margin-left: 8px;
|
|
603
635
|
}
|
|
636
|
+
|
|
637
|
+
@media (min-width: 997px) and (max-width: 1660px) {
|
|
638
|
+
:root {
|
|
639
|
+
--ifm-toc-padding-vertical: 0.25rem;
|
|
640
|
+
--ifm-toc-padding-horizontal: 0.25rem;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.navbar__item, .menu__link, .navbar__link {
|
|
644
|
+
padding: 2px 8px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.theme-doc-sidebar-menu .menu__link,
|
|
648
|
+
.theme-doc-toc-desktop .table-of-contents .toc-highlight {
|
|
649
|
+
font-size: .8rem;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.theme-doc-toc-desktop {
|
|
653
|
+
margin-left: -15px;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
html.plugin-docs .theme-doc-markdown {
|
|
657
|
+
font-size: 16px;
|
|
658
|
+
line-height: 28px;
|
|
659
|
+
}
|
|
660
|
+
}
|