typedoc 0.27.9 → 0.28.0-beta.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/README.md +26 -26
- package/bin/package.json +1 -1
- package/dist/browser-locales/en.d.ts +2 -0
- package/dist/browser-locales/en.js +62 -0
- package/dist/browser-locales/ja.d.ts +2 -0
- package/dist/browser-locales/ja.js +62 -0
- package/dist/browser-locales/ko.d.ts +2 -0
- package/dist/browser-locales/ko.js +62 -0
- package/dist/browser-locales/zh.d.ts +2 -0
- package/dist/browser-locales/zh.js +62 -0
- package/dist/browser-utils.d.ts +3 -0
- package/dist/browser-utils.js +3 -0
- package/dist/index.d.ts +15 -9
- package/dist/index.js +13 -7
- package/dist/lib/application.d.ts +9 -10
- package/dist/lib/application.js +75 -56
- package/dist/lib/cli.js +4 -3
- package/dist/lib/converter/comments/blockLexer.js +2 -2
- package/dist/lib/converter/comments/declarationReferenceResolver.d.ts +1 -1
- package/dist/lib/converter/comments/declarationReferenceResolver.js +8 -10
- package/dist/lib/converter/comments/discovery.d.ts +1 -1
- package/dist/lib/converter/comments/discovery.js +3 -4
- package/dist/lib/converter/comments/index.d.ts +1 -1
- package/dist/lib/converter/comments/index.js +5 -7
- package/dist/lib/converter/comments/linkResolver.d.ts +1 -1
- package/dist/lib/converter/comments/linkResolver.js +10 -16
- package/dist/lib/converter/comments/parser.d.ts +2 -2
- package/dist/lib/converter/comments/parser.js +8 -8
- package/dist/lib/converter/comments/textParser.d.ts +3 -2
- package/dist/lib/converter/comments/textParser.js +1 -2
- package/dist/lib/converter/context.d.ts +13 -14
- package/dist/lib/converter/context.js +49 -13
- package/dist/lib/converter/converter.d.ts +10 -5
- package/dist/lib/converter/converter.js +59 -42
- package/dist/lib/converter/factories/index-signature.js +3 -2
- package/dist/lib/converter/factories/signature.js +5 -6
- package/dist/lib/converter/factories/symbol-id.d.ts +4 -0
- package/dist/lib/converter/factories/symbol-id.js +92 -0
- package/dist/lib/converter/factories/types.d.ts +4 -0
- package/dist/lib/converter/factories/types.js +13 -0
- package/dist/lib/converter/index.d.ts +3 -4
- package/dist/lib/converter/index.js +2 -2
- package/dist/lib/converter/jsdoc.js +5 -4
- package/dist/lib/converter/plugins/CategoryPlugin.js +4 -2
- package/dist/lib/converter/plugins/CommentPlugin.d.ts +0 -1
- package/dist/lib/converter/plugins/CommentPlugin.js +8 -6
- package/dist/lib/converter/plugins/GroupPlugin.d.ts +2 -3
- package/dist/lib/converter/plugins/GroupPlugin.js +8 -7
- package/dist/lib/converter/plugins/ImplementsPlugin.js +6 -8
- package/dist/lib/converter/plugins/IncludePlugin.d.ts +1 -1
- package/dist/lib/converter/plugins/IncludePlugin.js +19 -16
- package/dist/lib/converter/plugins/InheritDocPlugin.js +7 -9
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +3 -2
- package/dist/lib/converter/plugins/PackagePlugin.d.ts +3 -2
- package/dist/lib/converter/plugins/PackagePlugin.js +23 -19
- package/dist/lib/converter/plugins/SourcePlugin.d.ts +2 -1
- package/dist/lib/converter/plugins/SourcePlugin.js +10 -9
- package/dist/lib/converter/plugins/TypePlugin.d.ts +1 -1
- package/dist/lib/converter/plugins/TypePlugin.js +1 -1
- package/dist/lib/converter/plugins/index.d.ts +1 -1
- package/dist/lib/converter/plugins/index.js +1 -1
- package/dist/lib/converter/symbols.js +103 -32
- package/dist/lib/converter/types.js +14 -13
- package/dist/lib/converter/utils/repository.d.ts +1 -1
- package/dist/lib/converter/utils/repository.js +2 -2
- package/dist/lib/debug/index.d.ts +2 -2
- package/dist/lib/debug/index.js +2 -2
- package/dist/lib/debug/{debugReflectionLifetimes.d.ts → reflectionLifetimes.d.ts} +2 -1
- package/dist/lib/debug/{debugReflectionLifetimes.js → reflectionLifetimes.js} +12 -4
- package/dist/lib/debug/{debugRendererUrls.d.ts → rendererUrls.d.ts} +1 -0
- package/dist/lib/debug/rendererUrls.js +68 -0
- package/dist/lib/internationalization/index.d.ts +2 -1
- package/dist/lib/internationalization/index.js +2 -1
- package/dist/lib/internationalization/internationalization.d.ts +16 -46
- package/dist/lib/internationalization/internationalization.js +44 -213
- package/dist/lib/internationalization/locales/en.cjs +9 -1
- package/dist/lib/internationalization/locales/en.d.cts +9 -1
- package/dist/lib/internationalization/locales/ja.cjs +1 -0
- package/dist/lib/internationalization/locales/zh.cjs +61 -5
- package/dist/lib/internationalization/locales/zh.d.cts +26 -2
- package/dist/lib/internationalization/translatable.d.ts +2 -1
- package/dist/lib/models/{comments/comment.d.ts → Comment.d.ts} +9 -8
- package/dist/lib/models/{comments/comment.js → Comment.js} +15 -18
- package/dist/lib/models/{reflections/container.d.ts → ContainerReflection.d.ts} +6 -6
- package/dist/lib/models/{reflections/container.js → ContainerReflection.js} +4 -5
- package/dist/lib/models/{reflections/declaration.d.ts → DeclarationReflection.d.ts} +11 -19
- package/dist/lib/models/{reflections/declaration.js → DeclarationReflection.js} +11 -29
- package/dist/lib/models/{reflections/document.d.ts → DocumentReflection.d.ts} +3 -3
- package/dist/lib/models/{reflections/document.js → DocumentReflection.js} +3 -3
- package/dist/lib/models/FileRegistry.d.ts +12 -20
- package/dist/lib/models/FileRegistry.js +8 -44
- package/dist/lib/models/{reflections/parameter.d.ts → ParameterReflection.d.ts} +4 -4
- package/dist/lib/models/{reflections/parameter.js → ParameterReflection.js} +2 -2
- package/dist/lib/models/{reflections/project.d.ts → ProjectReflection.d.ts} +12 -21
- package/dist/lib/models/{reflections/project.js → ProjectReflection.js} +16 -48
- package/dist/lib/models/{reflections/reference.d.ts → ReferenceReflection.d.ts} +3 -3
- package/dist/lib/models/{reflections/reference.js → ReferenceReflection.js} +3 -4
- package/dist/lib/models/{reflections/abstract.d.ts → Reflection.d.ts} +15 -28
- package/dist/lib/models/{reflections/abstract.js → Reflection.js} +38 -21
- package/dist/lib/models/ReflectionCategory.d.ts +2 -6
- package/dist/lib/models/ReflectionCategory.js +3 -9
- package/dist/lib/models/ReflectionGroup.d.ts +1 -5
- package/dist/lib/models/ReflectionGroup.js +2 -8
- package/dist/lib/models/{reflections/ReflectionSymbolId.d.ts → ReflectionSymbolId.d.ts} +23 -10
- package/dist/lib/models/ReflectionSymbolId.js +75 -0
- package/dist/lib/models/{reflections/signature.d.ts → SignatureReflection.d.ts} +8 -7
- package/dist/lib/models/{reflections/signature.js → SignatureReflection.js} +7 -11
- package/dist/lib/models/{sources/file.d.ts → SourceReference.d.ts} +3 -4
- package/dist/lib/models/{reflections/type-parameter.d.ts → TypeParameterReflection.d.ts} +6 -5
- package/dist/lib/models/{reflections/type-parameter.js → TypeParameterReflection.js} +4 -1
- package/dist/lib/models/index.d.ts +18 -6
- package/dist/lib/models/index.js +18 -6
- package/dist/lib/models/{reflections/kind.d.ts → kind.d.ts} +2 -8
- package/dist/lib/models/{reflections/kind.js → kind.js} +99 -30
- package/dist/lib/models/types.d.ts +8 -10
- package/dist/lib/models/types.js +11 -22
- package/dist/lib/models/{reflections/variant.d.ts → variant.d.ts} +7 -7
- package/dist/lib/output/components.d.ts +2 -2
- package/dist/lib/output/components.js +1 -1
- package/dist/lib/output/events.d.ts +10 -18
- package/dist/lib/output/events.js +10 -27
- package/dist/lib/output/formatter.d.ts +8 -5
- package/dist/lib/output/formatter.js +45 -18
- package/dist/lib/output/index.d.ts +4 -5
- package/dist/lib/output/index.js +4 -4
- package/dist/lib/output/output.js +5 -4
- package/dist/lib/output/plugins/AssetsPlugin.js +7 -6
- package/dist/lib/output/plugins/HierarchyPlugin.js +4 -3
- package/dist/lib/output/plugins/IconsPlugin.js +3 -3
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +12 -17
- package/dist/lib/output/plugins/SitemapPlugin.js +6 -7
- package/dist/lib/output/renderer.d.ts +22 -14
- package/dist/lib/output/renderer.js +76 -36
- package/dist/lib/output/router.d.ts +175 -0
- package/dist/lib/output/router.js +478 -0
- package/dist/lib/output/theme.d.ts +3 -28
- package/dist/lib/output/theme.js +2 -15
- package/dist/lib/output/themes/MarkedPlugin.d.ts +2 -2
- package/dist/lib/output/themes/MarkedPlugin.js +32 -30
- package/dist/lib/output/themes/default/DefaultTheme.d.ts +11 -40
- package/dist/lib/output/themes/default/DefaultTheme.js +207 -406
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +49 -47
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +17 -14
- package/dist/lib/output/themes/default/Slugger.js +1 -1
- package/dist/lib/output/themes/default/layouts/default.d.ts +1 -1
- package/dist/lib/output/themes/default/layouts/default.js +6 -6
- package/dist/lib/output/themes/default/partials/anchor-icon.d.ts +4 -1
- package/dist/lib/output/themes/default/partials/anchor-icon.js +12 -2
- package/dist/lib/output/themes/default/partials/breadcrumb.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/breadcrumb.js +11 -5
- package/dist/lib/output/themes/default/partials/comment.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/comment.js +9 -9
- package/dist/lib/output/themes/default/partials/footer.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/footer.js +2 -2
- package/dist/lib/output/themes/default/partials/header.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/header.js +4 -3
- package/dist/lib/output/themes/default/partials/hierarchy.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/hierarchy.js +10 -8
- package/dist/lib/output/themes/default/partials/icon.d.ts +2 -3
- package/dist/lib/output/themes/default/partials/icon.js +3 -3
- package/dist/lib/output/themes/default/partials/index.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/index.js +10 -18
- package/dist/lib/output/themes/default/partials/member.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.declaration.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.declaration.js +2 -2
- package/dist/lib/output/themes/default/partials/member.getterSetter.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +5 -5
- package/dist/lib/output/themes/default/partials/member.js +10 -9
- package/dist/lib/output/themes/default/partials/member.signature.body.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.signature.body.js +4 -4
- package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.signature.title.js +1 -1
- package/dist/lib/output/themes/default/partials/member.signatures.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.signatures.js +4 -4
- package/dist/lib/output/themes/default/partials/member.sources.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.sources.js +7 -7
- package/dist/lib/output/themes/default/partials/members.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/members.js +2 -2
- package/dist/lib/output/themes/default/partials/moduleReflection.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/moduleReflection.js +5 -5
- package/dist/lib/output/themes/default/partials/navigation.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/navigation.js +17 -15
- package/dist/lib/output/themes/default/partials/reflectionPreview.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +2 -2
- package/dist/lib/output/themes/default/partials/toolbar.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/toolbar.js +10 -13
- package/dist/lib/output/themes/default/partials/type.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/type.js +1 -1
- package/dist/lib/output/themes/default/partials/typeAndParent.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/typeAndParent.js +3 -3
- package/dist/lib/output/themes/default/partials/typeDetails.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/typeDetails.js +23 -19
- package/dist/lib/output/themes/default/partials/typeParameters.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/typeParameters.js +12 -7
- package/dist/lib/output/themes/default/templates/document.d.ts +1 -1
- package/dist/lib/output/themes/default/templates/document.js +2 -2
- package/dist/lib/output/themes/default/templates/hierarchy.d.ts +1 -1
- package/dist/lib/output/themes/default/templates/hierarchy.js +4 -3
- package/dist/lib/output/themes/default/templates/index.d.ts +1 -1
- package/dist/lib/output/themes/default/templates/index.js +2 -2
- package/dist/lib/output/themes/default/templates/reflection.d.ts +1 -1
- package/dist/lib/output/themes/default/templates/reflection.js +9 -12
- package/dist/lib/output/themes/lib.d.ts +1 -1
- package/dist/lib/output/themes/lib.js +3 -3
- package/dist/lib/serialization/components.d.ts +1 -1
- package/dist/lib/serialization/deserializer.d.ts +9 -13
- package/dist/lib/serialization/deserializer.js +22 -24
- package/dist/lib/serialization/events.d.ts +1 -1
- package/dist/lib/serialization/index.d.ts +1 -1
- package/dist/lib/serialization/index.js +1 -1
- package/dist/lib/serialization/schema.d.ts +15 -10
- package/dist/lib/serialization/schema.js +1 -1
- package/dist/lib/serialization/serializer.d.ts +4 -4
- package/dist/lib/serialization/serializer.js +1 -2
- package/dist/lib/utils/ValidatingFileRegistry.d.ts +10 -0
- package/dist/lib/utils/ValidatingFileRegistry.js +34 -0
- package/dist/lib/utils/component.d.ts +1 -1
- package/dist/lib/utils/component.js +1 -1
- package/dist/lib/utils/entry-point.d.ts +3 -3
- package/dist/lib/utils/entry-point.js +29 -26
- package/dist/lib/utils/fs.d.ts +5 -13
- package/dist/lib/utils/fs.js +11 -67
- package/dist/lib/utils/general.d.ts +1 -47
- package/dist/lib/utils/general.js +4 -74
- package/dist/lib/utils/highlighter.js +1 -2
- package/dist/lib/utils/html.d.ts +0 -1
- package/dist/lib/utils/html.js +4 -13
- package/dist/lib/utils/index.d.ts +9 -17
- package/dist/lib/utils/index.js +8 -15
- package/dist/lib/utils/loggers.d.ts +5 -108
- package/dist/lib/utils/loggers.js +24 -168
- package/dist/lib/utils/options/declaration.d.ts +63 -38
- package/dist/lib/utils/options/declaration.js +124 -66
- package/dist/lib/utils/options/defaults.d.ts +1 -1
- package/dist/lib/utils/options/help.d.ts +1 -2
- package/dist/lib/utils/options/help.js +5 -5
- package/dist/lib/utils/options/index.d.ts +4 -4
- package/dist/lib/utils/options/index.js +3 -3
- package/dist/lib/utils/options/options.d.ts +3 -6
- package/dist/lib/utils/options/options.js +10 -12
- package/dist/lib/utils/options/readers/arguments.d.ts +2 -2
- package/dist/lib/utils/options/readers/arguments.js +4 -3
- package/dist/lib/utils/options/readers/package-json.d.ts +1 -1
- package/dist/lib/utils/options/readers/package-json.js +3 -2
- package/dist/lib/utils/options/readers/tsconfig.d.ts +1 -1
- package/dist/lib/utils/options/readers/tsconfig.js +27 -27
- package/dist/lib/utils/options/readers/typedoc.d.ts +1 -1
- package/dist/lib/utils/options/readers/typedoc.js +8 -9
- package/dist/lib/utils/options/sources/typedoc.js +143 -135
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +1 -1
- package/dist/lib/utils/options/tsdoc-defaults.js +3 -1
- package/dist/lib/utils/package-manifest.d.ts +3 -3
- package/dist/lib/utils/package-manifest.js +9 -8
- package/dist/lib/utils/paths.d.ts +17 -6
- package/dist/lib/utils/paths.js +94 -11
- package/dist/lib/utils/perf.d.ts +4 -1
- package/dist/lib/utils/perf.js +32 -13
- package/dist/lib/utils/plugins.js +4 -3
- package/dist/lib/utils/sort.d.ts +1 -1
- package/dist/lib/utils/sort.js +8 -3
- package/dist/lib/utils/tsconfig.d.ts +1 -1
- package/dist/lib/utils/tsconfig.js +4 -3
- package/dist/lib/utils-common/general.d.ts +40 -0
- package/dist/lib/utils-common/general.js +20 -0
- package/dist/lib/utils-common/i18n.d.ts +17 -0
- package/dist/lib/utils-common/i18n.js +39 -0
- package/dist/lib/utils-common/index.d.ts +16 -0
- package/dist/lib/utils-common/index.js +18 -0
- package/dist/lib/{utils → utils-common}/jsx.d.ts +3 -3
- package/dist/lib/{utils → utils-common}/jsx.js +1 -1
- package/dist/lib/utils-common/logger.d.ts +86 -0
- package/dist/lib/utils-common/logger.js +120 -0
- package/dist/lib/{utils → utils-common}/minimalSourceFile.d.ts +7 -2
- package/dist/lib/{utils → utils-common}/minimalSourceFile.js +3 -2
- package/dist/lib/utils-common/path.d.ts +35 -0
- package/dist/lib/utils-common/path.js +123 -0
- package/dist/lib/utils-common/string.d.ts +11 -0
- package/dist/lib/utils-common/string.js +84 -0
- package/dist/lib/validation/documentation.d.ts +2 -2
- package/dist/lib/validation/documentation.js +5 -6
- package/dist/lib/validation/exports.d.ts +1 -1
- package/dist/lib/validation/exports.js +4 -4
- package/dist/lib/validation/links.d.ts +1 -1
- package/dist/lib/validation/links.js +9 -8
- package/dist/lib/validation/unusedMergeModuleWith.d.ts +1 -1
- package/dist/lib/validation/unusedMergeModuleWith.js +3 -2
- package/package.json +57 -36
- package/static/main.js +4 -4
- package/static/style.css +232 -209
- package/tsdoc.json +8 -0
- package/dist/lib/debug/debugRendererUrls.js +0 -59
- package/dist/lib/internationalization/locales/jp.cjs +0 -3
- package/dist/lib/internationalization/locales/jp.d.cts +0 -2
- package/dist/lib/models/comments/index.d.ts +0 -2
- package/dist/lib/models/comments/index.js +0 -1
- package/dist/lib/models/reflections/ReflectionSymbolId.js +0 -133
- package/dist/lib/models/reflections/index.d.ts +0 -15
- package/dist/lib/models/reflections/index.js +0 -12
- package/dist/lib/models/sources/index.d.ts +0 -1
- package/dist/lib/models/sources/index.js +0 -1
- package/dist/lib/output/models/UrlMapping.d.ts +0 -13
- package/dist/lib/output/models/UrlMapping.js +0 -10
- /package/dist/lib/models/{sources/file.js → SourceReference.js} +0 -0
- /package/dist/lib/models/{reflections/utils.d.ts → utils.d.ts} +0 -0
- /package/dist/lib/models/{reflections/utils.js → utils.js} +0 -0
- /package/dist/lib/models/{reflections/variant.js → variant.js} +0 -0
- /package/dist/lib/{utils → utils-common}/array.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/array.js +0 -0
- /package/dist/lib/{converter/comments → utils-common}/declarationReference.d.ts +0 -0
- /package/dist/lib/{converter/comments → utils-common}/declarationReference.js +0 -0
- /package/dist/lib/{utils → utils-common}/enum.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/enum.js +0 -0
- /package/dist/lib/{utils → utils-common}/events.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/events.js +0 -0
- /package/dist/lib/{utils → utils-common}/hooks.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/hooks.js +0 -0
- /package/dist/lib/{utils → utils-common}/jsx.elements.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/jsx.elements.js +0 -0
- /package/dist/lib/{utils → utils-common}/map.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/map.js +0 -0
- /package/dist/lib/{utils → utils-common}/set.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/set.js +0 -0
- /package/dist/lib/{utils → utils-common}/validation.d.ts +0 -0
- /package/dist/lib/{utils → utils-common}/validation.js +0 -0
package/static/style.css
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
1
1
|
@layer typedoc {
|
|
2
|
+
:root {
|
|
3
|
+
--dim-toolbar-contents-height: 2.5rem;
|
|
4
|
+
--dim-toolbar-border-bottom-width: 1px;
|
|
5
|
+
--dim-header-height: calc(
|
|
6
|
+
var(--dim-toolbar-border-bottom-width) +
|
|
7
|
+
var(--dim-toolbar-contents-height)
|
|
8
|
+
);
|
|
9
|
+
|
|
10
|
+
/* 0rem For mobile; unit is required for calculation in `calc` */
|
|
11
|
+
--dim-container-main-margin-y: 0rem;
|
|
12
|
+
|
|
13
|
+
--dim-footer-height: 3.5rem;
|
|
14
|
+
|
|
15
|
+
--modal-animation-duration: 0.2s;
|
|
16
|
+
}
|
|
17
|
+
|
|
2
18
|
:root {
|
|
3
19
|
/* Light */
|
|
4
20
|
--light-color-background: #f2f4f8;
|
|
5
21
|
--light-color-background-secondary: #eff0f1;
|
|
6
|
-
|
|
22
|
+
/* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */
|
|
23
|
+
--light-color-background-active: #d6d8da;
|
|
7
24
|
--light-color-background-warning: #e6e600;
|
|
25
|
+
--light-color-warning-text: #222;
|
|
8
26
|
--light-color-accent: #c5c7c9;
|
|
9
|
-
--light-color-active-menu-item: var(--light-color-
|
|
27
|
+
--light-color-active-menu-item: var(--light-color-background-active);
|
|
10
28
|
--light-color-text: #222;
|
|
11
|
-
--light-color-text
|
|
29
|
+
--light-color-contrast-text: #000;
|
|
30
|
+
--light-color-text-aside: #5e5e5e;
|
|
12
31
|
|
|
13
32
|
--light-color-icon-background: var(--light-color-background);
|
|
14
33
|
--light-color-icon-text: var(--light-color-text);
|
|
@@ -56,15 +75,20 @@
|
|
|
56
75
|
|
|
57
76
|
--light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
|
|
58
77
|
--light-color-scheme: light;
|
|
78
|
+
}
|
|
59
79
|
|
|
80
|
+
:root {
|
|
60
81
|
/* Dark */
|
|
61
82
|
--dark-color-background: #2b2e33;
|
|
62
83
|
--dark-color-background-secondary: #1e2024;
|
|
84
|
+
/* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */
|
|
85
|
+
--dark-color-background-active: #5d5d6a;
|
|
63
86
|
--dark-color-background-warning: #bebe00;
|
|
64
87
|
--dark-color-warning-text: #222;
|
|
65
88
|
--dark-color-accent: #9096a2;
|
|
66
|
-
--dark-color-active-menu-item:
|
|
89
|
+
--dark-color-active-menu-item: var(--dark-color-background-active);
|
|
67
90
|
--dark-color-text: #f5f5f5;
|
|
91
|
+
--dark-color-contrast-text: #ffffff;
|
|
68
92
|
--dark-color-text-aside: #dddddd;
|
|
69
93
|
|
|
70
94
|
--dark-color-icon-background: var(--dark-color-background-secondary);
|
|
@@ -119,11 +143,13 @@
|
|
|
119
143
|
--color-background-secondary: var(
|
|
120
144
|
--light-color-background-secondary
|
|
121
145
|
);
|
|
146
|
+
--color-background-active: var(--light-color-background-active);
|
|
122
147
|
--color-background-warning: var(--light-color-background-warning);
|
|
123
148
|
--color-warning-text: var(--light-color-warning-text);
|
|
124
149
|
--color-accent: var(--light-color-accent);
|
|
125
150
|
--color-active-menu-item: var(--light-color-active-menu-item);
|
|
126
151
|
--color-text: var(--light-color-text);
|
|
152
|
+
--color-contrast-text: var(--light-color-contrast-text);
|
|
127
153
|
--color-text-aside: var(--light-color-text-aside);
|
|
128
154
|
|
|
129
155
|
--color-icon-background: var(--light-color-icon-background);
|
|
@@ -179,11 +205,13 @@
|
|
|
179
205
|
--color-background-secondary: var(
|
|
180
206
|
--dark-color-background-secondary
|
|
181
207
|
);
|
|
208
|
+
--color-background-active: var(--dark-color-background-active);
|
|
182
209
|
--color-background-warning: var(--dark-color-background-warning);
|
|
183
210
|
--color-warning-text: var(--dark-color-warning-text);
|
|
184
211
|
--color-accent: var(--dark-color-accent);
|
|
185
212
|
--color-active-menu-item: var(--dark-color-active-menu-item);
|
|
186
213
|
--color-text: var(--dark-color-text);
|
|
214
|
+
--color-contrast-text: var(--dark-color-contrast-text);
|
|
187
215
|
--color-text-aside: var(--dark-color-text-aside);
|
|
188
216
|
|
|
189
217
|
--color-icon-background: var(--dark-color-icon-background);
|
|
@@ -237,19 +265,17 @@
|
|
|
237
265
|
color-scheme: var(--color-scheme);
|
|
238
266
|
}
|
|
239
267
|
|
|
240
|
-
body {
|
|
241
|
-
margin: 0;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
268
|
:root[data-theme="light"] {
|
|
245
269
|
--color-background: var(--light-color-background);
|
|
246
270
|
--color-background-secondary: var(--light-color-background-secondary);
|
|
271
|
+
--color-background-active: var(--light-color-background-active);
|
|
247
272
|
--color-background-warning: var(--light-color-background-warning);
|
|
248
273
|
--color-warning-text: var(--light-color-warning-text);
|
|
249
274
|
--color-icon-background: var(--light-color-icon-background);
|
|
250
275
|
--color-accent: var(--light-color-accent);
|
|
251
276
|
--color-active-menu-item: var(--light-color-active-menu-item);
|
|
252
277
|
--color-text: var(--light-color-text);
|
|
278
|
+
--color-contrast-text: var(--light-color-contrast-text);
|
|
253
279
|
--color-text-aside: var(--light-color-text-aside);
|
|
254
280
|
--color-icon-text: var(--light-color-icon-text);
|
|
255
281
|
|
|
@@ -299,12 +325,14 @@
|
|
|
299
325
|
:root[data-theme="dark"] {
|
|
300
326
|
--color-background: var(--dark-color-background);
|
|
301
327
|
--color-background-secondary: var(--dark-color-background-secondary);
|
|
328
|
+
--color-background-active: var(--dark-color-background-active);
|
|
302
329
|
--color-background-warning: var(--dark-color-background-warning);
|
|
303
330
|
--color-warning-text: var(--dark-color-warning-text);
|
|
304
331
|
--color-icon-background: var(--dark-color-icon-background);
|
|
305
332
|
--color-accent: var(--dark-color-accent);
|
|
306
333
|
--color-active-menu-item: var(--dark-color-active-menu-item);
|
|
307
334
|
--color-text: var(--dark-color-text);
|
|
335
|
+
--color-contrast-text: var(--dark-color-contrast-text);
|
|
308
336
|
--color-text-aside: var(--dark-color-text-aside);
|
|
309
337
|
--color-icon-text: var(--dark-color-icon-text);
|
|
310
338
|
|
|
@@ -421,16 +449,19 @@
|
|
|
421
449
|
border-top: 1px solid var(--color-accent);
|
|
422
450
|
padding-top: 1rem;
|
|
423
451
|
padding-bottom: 1rem;
|
|
424
|
-
max-height:
|
|
452
|
+
max-height: var(--dim-footer-height);
|
|
425
453
|
}
|
|
426
454
|
footer > p {
|
|
427
455
|
margin: 0 1em;
|
|
428
456
|
}
|
|
429
457
|
|
|
430
458
|
.container-main {
|
|
431
|
-
margin:
|
|
459
|
+
margin: var(--dim-container-main-margin-y) auto;
|
|
432
460
|
/* toolbar, footer, margin */
|
|
433
|
-
min-height: calc(
|
|
461
|
+
min-height: calc(
|
|
462
|
+
100svh - var(--dim-header-height) - var(--dim-footer-height) -
|
|
463
|
+
2 * var(--dim-container-main-margin-y)
|
|
464
|
+
);
|
|
434
465
|
}
|
|
435
466
|
|
|
436
467
|
@keyframes fade-in {
|
|
@@ -450,29 +481,6 @@
|
|
|
450
481
|
opacity: 0;
|
|
451
482
|
}
|
|
452
483
|
}
|
|
453
|
-
@keyframes fade-in-delayed {
|
|
454
|
-
0% {
|
|
455
|
-
opacity: 0;
|
|
456
|
-
}
|
|
457
|
-
33% {
|
|
458
|
-
opacity: 0;
|
|
459
|
-
}
|
|
460
|
-
100% {
|
|
461
|
-
opacity: 1;
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
@keyframes fade-out-delayed {
|
|
465
|
-
0% {
|
|
466
|
-
opacity: 1;
|
|
467
|
-
visibility: visible;
|
|
468
|
-
}
|
|
469
|
-
66% {
|
|
470
|
-
opacity: 0;
|
|
471
|
-
}
|
|
472
|
-
100% {
|
|
473
|
-
opacity: 0;
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
484
|
@keyframes pop-in-from-right {
|
|
477
485
|
from {
|
|
478
486
|
transform: translate(100%, 0);
|
|
@@ -492,10 +500,19 @@
|
|
|
492
500
|
}
|
|
493
501
|
body {
|
|
494
502
|
background: var(--color-background);
|
|
495
|
-
font-family:
|
|
496
|
-
|
|
503
|
+
font-family:
|
|
504
|
+
-apple-system,
|
|
505
|
+
BlinkMacSystemFont,
|
|
506
|
+
"Segoe UI",
|
|
507
|
+
"Noto Sans",
|
|
508
|
+
Helvetica,
|
|
509
|
+
Arial,
|
|
510
|
+
sans-serif,
|
|
511
|
+
"Apple Color Emoji",
|
|
512
|
+
"Segoe UI Emoji";
|
|
497
513
|
font-size: 16px;
|
|
498
514
|
color: var(--color-text);
|
|
515
|
+
margin: 0;
|
|
499
516
|
}
|
|
500
517
|
|
|
501
518
|
a {
|
|
@@ -555,6 +572,52 @@
|
|
|
555
572
|
border-left: 4px solid gray;
|
|
556
573
|
}
|
|
557
574
|
|
|
575
|
+
img {
|
|
576
|
+
max-width: 100%;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
* {
|
|
580
|
+
scrollbar-width: thin;
|
|
581
|
+
scrollbar-color: var(--color-accent) var(--color-icon-background);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
*::-webkit-scrollbar {
|
|
585
|
+
width: 0.75rem;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
*::-webkit-scrollbar-track {
|
|
589
|
+
background: var(--color-icon-background);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
*::-webkit-scrollbar-thumb {
|
|
593
|
+
background-color: var(--color-accent);
|
|
594
|
+
border-radius: 999rem;
|
|
595
|
+
border: 0.25rem solid var(--color-icon-background);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
dialog {
|
|
599
|
+
border: none;
|
|
600
|
+
outline: none;
|
|
601
|
+
padding: 0;
|
|
602
|
+
background-color: var(--color-background);
|
|
603
|
+
}
|
|
604
|
+
dialog::backdrop {
|
|
605
|
+
display: none;
|
|
606
|
+
}
|
|
607
|
+
#tsd-overlay {
|
|
608
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
609
|
+
position: fixed;
|
|
610
|
+
z-index: 9999;
|
|
611
|
+
top: 0;
|
|
612
|
+
left: 0;
|
|
613
|
+
right: 0;
|
|
614
|
+
bottom: 0;
|
|
615
|
+
animation: fade-in var(--modal-animation-duration) forwards;
|
|
616
|
+
}
|
|
617
|
+
#tsd-overlay.closing {
|
|
618
|
+
animation-name: fade-out;
|
|
619
|
+
}
|
|
620
|
+
|
|
558
621
|
.tsd-typography {
|
|
559
622
|
line-height: 1.333em;
|
|
560
623
|
}
|
|
@@ -629,6 +692,7 @@
|
|
|
629
692
|
|
|
630
693
|
.tsd-breadcrumb {
|
|
631
694
|
margin: 0;
|
|
695
|
+
margin-top: 1rem;
|
|
632
696
|
padding: 0;
|
|
633
697
|
color: var(--color-text-aside);
|
|
634
698
|
}
|
|
@@ -733,7 +797,7 @@
|
|
|
733
797
|
margin-right: 0.5em;
|
|
734
798
|
border-radius: 0.33em;
|
|
735
799
|
/* Leaving this at full opacity breaks event listeners on Firefox.
|
|
736
|
-
|
|
800
|
+
Don't remove unless you know what you're doing. */
|
|
737
801
|
opacity: 0.99;
|
|
738
802
|
}
|
|
739
803
|
.tsd-filter-input input[type="checkbox"]:focus-visible + svg {
|
|
@@ -876,7 +940,8 @@
|
|
|
876
940
|
}
|
|
877
941
|
|
|
878
942
|
.tsd-navigation.settings {
|
|
879
|
-
margin:
|
|
943
|
+
margin: 0;
|
|
944
|
+
margin-bottom: 1rem;
|
|
880
945
|
}
|
|
881
946
|
.tsd-navigation > a,
|
|
882
947
|
.tsd-navigation .tsd-accordion-summary {
|
|
@@ -898,6 +963,7 @@
|
|
|
898
963
|
.tsd-navigation a.current,
|
|
899
964
|
.tsd-page-navigation a.current {
|
|
900
965
|
background: var(--color-active-menu-item);
|
|
966
|
+
color: var(--color-contrast-text);
|
|
901
967
|
}
|
|
902
968
|
.tsd-navigation a:hover,
|
|
903
969
|
.tsd-page-navigation a:hover {
|
|
@@ -1062,117 +1128,104 @@
|
|
|
1062
1128
|
margin-bottom: 1rem;
|
|
1063
1129
|
}
|
|
1064
1130
|
|
|
1065
|
-
#tsd-search {
|
|
1066
|
-
|
|
1131
|
+
#tsd-search[open] {
|
|
1132
|
+
animation: fade-in var(--modal-animation-duration) ease-out forwards;
|
|
1067
1133
|
}
|
|
1068
|
-
#tsd-search
|
|
1069
|
-
|
|
1070
|
-
z-index: 2;
|
|
1134
|
+
#tsd-search[open].closing {
|
|
1135
|
+
animation-name: fade-out;
|
|
1071
1136
|
}
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1137
|
+
|
|
1138
|
+
/* Avoid setting `display` on closed dialog */
|
|
1139
|
+
#tsd-search[open] {
|
|
1140
|
+
display: flex;
|
|
1141
|
+
flex-direction: column;
|
|
1142
|
+
padding: 1rem;
|
|
1143
|
+
width: 32rem;
|
|
1144
|
+
max-width: 90vw;
|
|
1145
|
+
max-height: calc(100vh - env(keyboard-inset-height, 0px) - 25vh);
|
|
1146
|
+
/* Anchor dialog to top */
|
|
1147
|
+
margin-top: 10vh;
|
|
1148
|
+
border-radius: 6px;
|
|
1149
|
+
will-change: max-height;
|
|
1150
|
+
}
|
|
1151
|
+
#tsd-search-input {
|
|
1080
1152
|
box-sizing: border-box;
|
|
1081
|
-
position: relative;
|
|
1082
|
-
top: -50px;
|
|
1083
|
-
z-index: 1;
|
|
1084
1153
|
width: 100%;
|
|
1085
|
-
padding: 0 10px
|
|
1086
|
-
opacity: 0;
|
|
1154
|
+
padding: 0 0.625rem; /* 10px */
|
|
1087
1155
|
outline: 0;
|
|
1088
|
-
border:
|
|
1089
|
-
background: transparent;
|
|
1156
|
+
border: 2px solid var(--color-accent);
|
|
1157
|
+
background-color: transparent;
|
|
1090
1158
|
color: var(--color-text);
|
|
1159
|
+
border-radius: 4px;
|
|
1160
|
+
height: 2.5rem;
|
|
1161
|
+
flex: 0 0 auto;
|
|
1162
|
+
font-size: 0.875rem;
|
|
1163
|
+
transition: border-color 0.2s, background-color 0.2s;
|
|
1091
1164
|
}
|
|
1092
|
-
#tsd-search
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1165
|
+
#tsd-search-input:focus-visible {
|
|
1166
|
+
background-color: var(--color-background-active);
|
|
1167
|
+
border-color: transparent;
|
|
1168
|
+
color: var(--color-contrast-text);
|
|
1096
1169
|
}
|
|
1097
|
-
#tsd-search
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
transition: opacity 0.2s;
|
|
1170
|
+
#tsd-search-input::placeholder {
|
|
1171
|
+
color: inherit;
|
|
1172
|
+
opacity: 0.8;
|
|
1101
1173
|
}
|
|
1102
|
-
#tsd-search
|
|
1103
|
-
position: absolute;
|
|
1104
|
-
visibility: hidden;
|
|
1105
|
-
top: 40px;
|
|
1106
|
-
width: 100%;
|
|
1174
|
+
#tsd-search-results {
|
|
1107
1175
|
margin: 0;
|
|
1108
1176
|
padding: 0;
|
|
1109
1177
|
list-style: none;
|
|
1110
|
-
|
|
1178
|
+
flex: 1 1 auto;
|
|
1179
|
+
display: flex;
|
|
1180
|
+
flex-direction: column;
|
|
1181
|
+
overflow-y: auto;
|
|
1182
|
+
}
|
|
1183
|
+
#tsd-search-results:not(:empty) {
|
|
1184
|
+
margin-top: 0.5rem;
|
|
1111
1185
|
}
|
|
1112
|
-
#tsd-search
|
|
1186
|
+
#tsd-search-results > li {
|
|
1113
1187
|
background-color: var(--color-background);
|
|
1114
|
-
line-height:
|
|
1115
|
-
|
|
1188
|
+
line-height: 1.5;
|
|
1189
|
+
box-sizing: border-box;
|
|
1190
|
+
border-radius: 4px;
|
|
1116
1191
|
}
|
|
1117
|
-
#tsd-search
|
|
1192
|
+
#tsd-search-results > li:nth-child(even) {
|
|
1118
1193
|
background-color: var(--color-background-secondary);
|
|
1119
1194
|
}
|
|
1120
|
-
#tsd-search
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
#tsd-search .results li.current:not(.no-results),
|
|
1124
|
-
#tsd-search .results li:hover:not(.no-results) {
|
|
1125
|
-
background-color: var(--color-accent);
|
|
1195
|
+
#tsd-search-results > li:is(:hover, [aria-selected="true"]) {
|
|
1196
|
+
background-color: var(--color-background-active);
|
|
1197
|
+
color: var(--color-contrast-text);
|
|
1126
1198
|
}
|
|
1127
|
-
|
|
1199
|
+
/* It's important that this takes full size of parent `li`, to capture a click on `li` */
|
|
1200
|
+
#tsd-search-results > li > a {
|
|
1128
1201
|
display: flex;
|
|
1129
1202
|
align-items: center;
|
|
1130
|
-
padding: 0.25rem;
|
|
1203
|
+
padding: 0.5rem 0.25rem;
|
|
1131
1204
|
box-sizing: border-box;
|
|
1205
|
+
width: 100%;
|
|
1132
1206
|
}
|
|
1133
|
-
#tsd-search
|
|
1134
|
-
|
|
1207
|
+
#tsd-search-results > li > a > .text {
|
|
1208
|
+
flex: 1 1 auto;
|
|
1209
|
+
min-width: 0;
|
|
1210
|
+
overflow-wrap: anywhere;
|
|
1135
1211
|
}
|
|
1136
|
-
#tsd-search
|
|
1212
|
+
#tsd-search-results > li > a .parent {
|
|
1137
1213
|
color: var(--color-text-aside);
|
|
1138
|
-
font-weight: normal;
|
|
1139
|
-
}
|
|
1140
|
-
#tsd-search.has-focus {
|
|
1141
|
-
background-color: var(--color-accent);
|
|
1142
|
-
}
|
|
1143
|
-
#tsd-search.has-focus .field input {
|
|
1144
|
-
top: 0;
|
|
1145
|
-
opacity: 1;
|
|
1146
|
-
}
|
|
1147
|
-
#tsd-search.has-focus .title,
|
|
1148
|
-
#tsd-search.has-focus #tsd-toolbar-links a {
|
|
1149
|
-
z-index: 0;
|
|
1150
|
-
opacity: 0;
|
|
1151
|
-
}
|
|
1152
|
-
#tsd-search.has-focus .results {
|
|
1153
|
-
visibility: visible;
|
|
1154
1214
|
}
|
|
1155
|
-
#tsd-search
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
display: block;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
#tsd-toolbar-links {
|
|
1163
|
-
position: absolute;
|
|
1164
|
-
top: 0;
|
|
1165
|
-
right: 2rem;
|
|
1166
|
-
height: 100%;
|
|
1167
|
-
display: flex;
|
|
1168
|
-
align-items: center;
|
|
1169
|
-
justify-content: flex-end;
|
|
1215
|
+
#tsd-search-results > li > a mark {
|
|
1216
|
+
color: inherit;
|
|
1217
|
+
background-color: inherit;
|
|
1218
|
+
font-weight: bold;
|
|
1170
1219
|
}
|
|
1171
|
-
#tsd-
|
|
1172
|
-
|
|
1220
|
+
#tsd-search-status {
|
|
1221
|
+
flex: 1;
|
|
1222
|
+
display: grid;
|
|
1223
|
+
place-content: center;
|
|
1224
|
+
text-align: center;
|
|
1225
|
+
overflow-wrap: anywhere;
|
|
1173
1226
|
}
|
|
1174
|
-
#tsd-
|
|
1175
|
-
|
|
1227
|
+
#tsd-search-status:not(:empty) {
|
|
1228
|
+
min-height: 6rem;
|
|
1176
1229
|
}
|
|
1177
1230
|
|
|
1178
1231
|
.tsd-signature {
|
|
@@ -1257,78 +1310,52 @@
|
|
|
1257
1310
|
width: 100%;
|
|
1258
1311
|
color: var(--color-text);
|
|
1259
1312
|
background: var(--color-background-secondary);
|
|
1260
|
-
border-bottom:
|
|
1313
|
+
border-bottom: var(--dim-toolbar-border-bottom-width)
|
|
1314
|
+
var(--color-accent) solid;
|
|
1261
1315
|
transition: transform 0.3s ease-in-out;
|
|
1262
1316
|
}
|
|
1263
1317
|
.tsd-page-toolbar a {
|
|
1264
1318
|
color: var(--color-text);
|
|
1265
|
-
text-decoration: none;
|
|
1266
|
-
}
|
|
1267
|
-
.tsd-page-toolbar a.title {
|
|
1268
|
-
font-weight: bold;
|
|
1269
1319
|
}
|
|
1270
|
-
.tsd-
|
|
1271
|
-
text-decoration: underline;
|
|
1272
|
-
}
|
|
1273
|
-
.tsd-page-toolbar .tsd-toolbar-contents {
|
|
1320
|
+
.tsd-toolbar-contents {
|
|
1274
1321
|
display: flex;
|
|
1275
|
-
|
|
1276
|
-
height:
|
|
1322
|
+
align-items: center;
|
|
1323
|
+
height: var(--dim-toolbar-contents-height);
|
|
1277
1324
|
margin: 0 auto;
|
|
1278
1325
|
}
|
|
1279
|
-
.tsd-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
line-height: 40px;
|
|
1283
|
-
}
|
|
1284
|
-
.tsd-page-toolbar .table-cell:first-child {
|
|
1285
|
-
width: 100%;
|
|
1326
|
+
.tsd-toolbar-contents > .title {
|
|
1327
|
+
font-weight: bold;
|
|
1328
|
+
margin-right: auto;
|
|
1286
1329
|
}
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1330
|
+
#tsd-toolbar-links {
|
|
1331
|
+
display: flex;
|
|
1332
|
+
align-items: center;
|
|
1333
|
+
gap: 1.5rem;
|
|
1334
|
+
margin-right: 1rem;
|
|
1291
1335
|
}
|
|
1292
1336
|
|
|
1293
1337
|
.tsd-widget {
|
|
1338
|
+
box-sizing: border-box;
|
|
1294
1339
|
display: inline-block;
|
|
1295
|
-
overflow: hidden;
|
|
1296
1340
|
opacity: 0.8;
|
|
1297
|
-
height:
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
vertical-align: bottom;
|
|
1341
|
+
height: 2.5rem;
|
|
1342
|
+
width: 2.5rem;
|
|
1343
|
+
transition: opacity 0.1s, background-color 0.1s;
|
|
1344
|
+
text-align: center;
|
|
1302
1345
|
cursor: pointer;
|
|
1346
|
+
border: none;
|
|
1347
|
+
background-color: transparent;
|
|
1303
1348
|
}
|
|
1304
1349
|
.tsd-widget:hover {
|
|
1305
1350
|
opacity: 0.9;
|
|
1306
1351
|
}
|
|
1307
|
-
.tsd-widget
|
|
1352
|
+
.tsd-widget:active {
|
|
1308
1353
|
opacity: 1;
|
|
1309
1354
|
background-color: var(--color-accent);
|
|
1310
1355
|
}
|
|
1311
|
-
|
|
1312
|
-
width: 40px;
|
|
1313
|
-
}
|
|
1314
|
-
.tsd-widget.no-caption:before {
|
|
1315
|
-
margin: 0;
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
.tsd-widget.options,
|
|
1319
|
-
.tsd-widget.menu {
|
|
1356
|
+
#tsd-toolbar-menu-trigger {
|
|
1320
1357
|
display: none;
|
|
1321
1358
|
}
|
|
1322
|
-
input[type="checkbox"] + .tsd-widget:before {
|
|
1323
|
-
background-position: -120px 0;
|
|
1324
|
-
}
|
|
1325
|
-
input[type="checkbox"]:checked + .tsd-widget:before {
|
|
1326
|
-
background-position: -160px 0;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
img {
|
|
1330
|
-
max-width: 100%;
|
|
1331
|
-
}
|
|
1332
1359
|
|
|
1333
1360
|
.tsd-member-summary-name {
|
|
1334
1361
|
display: inline-flex;
|
|
@@ -1437,41 +1464,26 @@
|
|
|
1437
1464
|
color: var(--color-text);
|
|
1438
1465
|
}
|
|
1439
1466
|
|
|
1440
|
-
* {
|
|
1441
|
-
scrollbar-width: thin;
|
|
1442
|
-
scrollbar-color: var(--color-accent) var(--color-icon-background);
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
*::-webkit-scrollbar {
|
|
1446
|
-
width: 0.75rem;
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
*::-webkit-scrollbar-track {
|
|
1450
|
-
background: var(--color-icon-background);
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
*::-webkit-scrollbar-thumb {
|
|
1454
|
-
background-color: var(--color-accent);
|
|
1455
|
-
border-radius: 999rem;
|
|
1456
|
-
border: 0.25rem solid var(--color-icon-background);
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
1467
|
/* mobile */
|
|
1460
1468
|
@media (max-width: 769px) {
|
|
1461
|
-
|
|
1462
|
-
.tsd-widget.menu {
|
|
1469
|
+
#tsd-toolbar-menu-trigger {
|
|
1463
1470
|
display: inline-block;
|
|
1471
|
+
/* temporary fix to vertically align, for compatibilty */
|
|
1472
|
+
line-height: 2.5;
|
|
1473
|
+
}
|
|
1474
|
+
#tsd-toolbar-links {
|
|
1475
|
+
display: none;
|
|
1464
1476
|
}
|
|
1465
1477
|
|
|
1466
1478
|
.container-main {
|
|
1467
1479
|
display: flex;
|
|
1468
1480
|
}
|
|
1469
|
-
|
|
1481
|
+
.col-content {
|
|
1470
1482
|
float: none;
|
|
1471
1483
|
max-width: 100%;
|
|
1472
1484
|
width: 100%;
|
|
1473
1485
|
}
|
|
1474
|
-
|
|
1486
|
+
.col-sidebar {
|
|
1475
1487
|
position: fixed !important;
|
|
1476
1488
|
overflow-y: auto;
|
|
1477
1489
|
-webkit-overflow-scrolling: touch;
|
|
@@ -1486,10 +1498,10 @@
|
|
|
1486
1498
|
background-color: var(--color-background);
|
|
1487
1499
|
transform: translate(100%, 0);
|
|
1488
1500
|
}
|
|
1489
|
-
|
|
1501
|
+
.col-sidebar > *:last-child {
|
|
1490
1502
|
padding-bottom: 20px;
|
|
1491
1503
|
}
|
|
1492
|
-
|
|
1504
|
+
.overlay {
|
|
1493
1505
|
content: "";
|
|
1494
1506
|
display: block;
|
|
1495
1507
|
position: fixed;
|
|
@@ -1536,9 +1548,6 @@
|
|
|
1536
1548
|
.has-menu .tsd-navigation {
|
|
1537
1549
|
max-height: 100%;
|
|
1538
1550
|
}
|
|
1539
|
-
#tsd-toolbar-links {
|
|
1540
|
-
display: none;
|
|
1541
|
-
}
|
|
1542
1551
|
.tsd-navigation .tsd-nav-link {
|
|
1543
1552
|
display: flex;
|
|
1544
1553
|
}
|
|
@@ -1550,7 +1559,11 @@
|
|
|
1550
1559
|
display: grid;
|
|
1551
1560
|
grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
|
|
1552
1561
|
grid-template-areas: "sidebar content";
|
|
1553
|
-
margin: 2rem
|
|
1562
|
+
--dim-container-main-margin-y: 2rem;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.tsd-breadcrumb {
|
|
1566
|
+
margin-top: 0;
|
|
1554
1567
|
}
|
|
1555
1568
|
|
|
1556
1569
|
.col-sidebar {
|
|
@@ -1563,11 +1576,15 @@
|
|
|
1563
1576
|
}
|
|
1564
1577
|
@media (min-width: 770px) and (max-width: 1399px) {
|
|
1565
1578
|
.col-sidebar {
|
|
1566
|
-
max-height: calc(
|
|
1579
|
+
max-height: calc(
|
|
1580
|
+
100vh - var(--dim-header-height) - var(--dim-footer-height) -
|
|
1581
|
+
2 * var(--dim-container-main-margin-y)
|
|
1582
|
+
);
|
|
1567
1583
|
overflow: auto;
|
|
1568
1584
|
position: sticky;
|
|
1569
|
-
top:
|
|
1570
|
-
|
|
1585
|
+
top: calc(
|
|
1586
|
+
var(--dim-header-height) + var(--dim-container-main-margin-y)
|
|
1587
|
+
);
|
|
1571
1588
|
}
|
|
1572
1589
|
.site-menu {
|
|
1573
1590
|
margin-top: 1rem;
|
|
@@ -1577,10 +1594,11 @@
|
|
|
1577
1594
|
/* two sidebars */
|
|
1578
1595
|
@media (min-width: 1200px) {
|
|
1579
1596
|
.container-main {
|
|
1580
|
-
grid-template-columns:
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1597
|
+
grid-template-columns:
|
|
1598
|
+
minmax(0, 1fr) minmax(0, 2.5fr) minmax(
|
|
1599
|
+
0,
|
|
1600
|
+
20rem
|
|
1601
|
+
);
|
|
1584
1602
|
grid-template-areas: "sidebar content toc";
|
|
1585
1603
|
}
|
|
1586
1604
|
|
|
@@ -1597,15 +1615,20 @@
|
|
|
1597
1615
|
}
|
|
1598
1616
|
|
|
1599
1617
|
.site-menu {
|
|
1600
|
-
margin-top:
|
|
1618
|
+
margin-top: 0rem;
|
|
1601
1619
|
}
|
|
1602
1620
|
|
|
1603
1621
|
.page-menu,
|
|
1604
1622
|
.site-menu {
|
|
1605
|
-
max-height: calc(
|
|
1623
|
+
max-height: calc(
|
|
1624
|
+
100vh - var(--dim-header-height) - var(--dim-footer-height) -
|
|
1625
|
+
2 * var(--dim-container-main-margin-y)
|
|
1626
|
+
);
|
|
1606
1627
|
overflow: auto;
|
|
1607
1628
|
position: sticky;
|
|
1608
|
-
top:
|
|
1629
|
+
top: calc(
|
|
1630
|
+
var(--dim-header-height) + var(--dim-container-main-margin-y)
|
|
1631
|
+
);
|
|
1609
1632
|
}
|
|
1610
1633
|
}
|
|
1611
1634
|
}
|