diff --git a/dev/assets/_mkdocstrings.css b/dev/assets/_mkdocstrings.css index ab7fbf22..850e5927 100644 --- a/dev/assets/_mkdocstrings.css +++ b/dev/assets/_mkdocstrings.css @@ -10,6 +10,11 @@ display: inline; } +/* No text transformation from Material for MkDocs for H5 headings. */ +.md-typeset h5 .doc-object-name { + text-transform: none; +} + /* Max width for docstring sections tables. */ .doc .md-typeset__table, .doc .md-typeset__table table { @@ -31,6 +36,11 @@ display: inline; } +/* Default font size for parameter headings. */ +.md-typeset .doc-heading-parameter { + font-size: inherit; +} + /* Prefer space on the right, not the left of parameter permalinks. */ .doc-heading-parameter .headerlink { margin-left: 0 !important; diff --git a/dev/concepts/advanced/component_caching/index.html b/dev/concepts/advanced/component_caching/index.html index c75ae5ae..0cd505d1 100644 --- a/dev/concepts/advanced/component_caching/index.html +++ b/dev/concepts/advanced/component_caching/index.html @@ -65,4 +65,4 @@ def get_template_data(self, args, kwargs, slots, context): return {"name": kwargs["name"]} -
In this example, the component's rendered output is cached for 5 minutes using the my_cache backend.