Skip to content

Commit

Permalink
v0.12.6
Browse files Browse the repository at this point in the history
- fixed overlong `template<>` lines in summary views
- fixed function parameter names greedily wrapping in details tables
  • Loading branch information
marzer committed Jul 24, 2023
1 parent 121bed2 commit 92469a9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
11 changes: 8 additions & 3 deletions poxy/data/css/poxy-overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 <wbr> 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;
}
5 changes: 3 additions & 2 deletions poxy/data/generated/poxy.css
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

2 changes: 1 addition & 1 deletion poxy/data/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.5
0.12.6

0 comments on commit 92469a9

Please sign in to comment.