sphinx php parameter rendering hard to read
https://book.cakephp.org/4/en/core-libraries/logging.html#namespace-Cake\Log
The formatting is inconsistent and the font size is very large.

@markstory did something change in the sphinx plugin?
Not any time recently, but I agree the formatting isn't great.
This issue is stale because it has been open for 120 days with no activity. Remove the stale label or comment or this will be closed in 15 days
This issue is stale because it has been open for 120 days with no activity. Remove the stale label or comment or this will be closed in 15 days
Can I be of any help?
Can I be of any help?
I think this is a css issue with dd elements.
(Looks like) this issue belongs to cakephpsphinx package (default.css -> field-list) ... will propose a pull request for the theme (may be only a workaround)
preview:

following workaround applied to cakephpsphinx/themes/cakephp/static/css/default.css:
/* -- fix test -- */
.field-list,
.field-list strong {
font-family: "Roboto Mono", "Consolas", "Monaco", monospace;
color: #003d4c;
font-weight: normal;
font-size: 12px;
}
/* -- fix test end -- */
(Looks like) this issue belongs to cakephpsphinx package
@gludie You're right that this issue belongs there now. The preview of your changes looks good to me. A pull request would be greatly appreciated.
I guess, we can close the issue, hence PR was accepted and done in cakephp/sphinxtheme
Thanks!