From 92469a9e2039cfc1b19e6b3087b9e60195c445e1 Mon Sep 17 00:00:00 2001 From: Mark Gillard Date: Tue, 25 Jul 2023 01:38:29 +0300 Subject: [PATCH] v0.12.6 - fixed overlong `template<>` lines in summary views - fixed function parameter names greedily wrapping in details tables --- CHANGELOG.md | 5 +++++ poxy/data/css/poxy-overrides.css | 11 ++++++++--- poxy/data/generated/poxy.css | 5 +++-- poxy/data/version.txt | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80c9697..77cea74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.12.6 - 2023-07-25 + +- fixed overlong `template<>` lines in summary views +- fixed function parameter names greedily wrapping in details tables + ## v0.12.5 - 2023-07-20 - fixed overlong `template<>` lines in page headers (they now wrap) diff --git a/poxy/data/css/poxy-overrides.css b/poxy/data/css/poxy-overrides.css index 567acf4..370c127 100644 --- a/poxy/data/css/poxy-overrides.css +++ b/poxy/data/css/poxy-overrides.css @@ -454,14 +454,19 @@ figure.m-figure > figcaption } /* breaking overlong template<> definitions over multiple lines */ -h1 .m-doc-template-params.m-doc-template-long +.m-doc-template-params.m-doc-template-long { display: block; padding-left: 1rem; } - -h1 .m-doc-template-params.m-doc-template-long .m-doc-template-param:before +.m-doc-template-params.m-doc-template-long .m-doc-template-param:before { content: ""; display: block; } + +/* killing tags in function details table template lists */ +section.m-doc-details > div > .m-table.m-fullwidth.m-flat tbody td:first-of-type wbr +{ + display: none; +} diff --git a/poxy/data/generated/poxy.css b/poxy/data/generated/poxy.css index 6d33afe..07777bb 100644 --- a/poxy/data/generated/poxy.css +++ b/poxy/data/generated/poxy.css @@ -2797,6 +2797,7 @@ margin-top: initial; .m-info:not(.m-note, .m-button) a:hover, .m-info:not(.m-note, .m-button) a:focus, .m-info:not(.m-note, .m-button) a:active { color: var(--info-link-active-color); } -h1 .m-doc-template-params.m-doc-template-long { display: block; padding-left: 1rem; } -h1 .m-doc-template-params.m-doc-template-long .m-doc-template-param::before { content: ""; display: block; } +.m-doc-template-params.m-doc-template-long { display: block; padding-left: 1rem; } +.m-doc-template-params.m-doc-template-long .m-doc-template-param::before { content: ""; display: block; } +section.m-doc-details > div > .m-table.m-fullwidth.m-flat tbody td:first-of-type wbr { display: none; } diff --git a/poxy/data/version.txt b/poxy/data/version.txt index 43c2417..dabff2f 100644 --- a/poxy/data/version.txt +++ b/poxy/data/version.txt @@ -1 +1 @@ -0.12.5 +0.12.6