audeering / sphinx-audeering-theme

Sphinx theme from audEERING
https://audeering.github.io/sphinx-audeering-theme/
Other
1 stars 0 forks source link

Too much space after properties #57

Closed frankenjoe closed 2 years ago

frankenjoe commented 2 years ago

It seems there is more space after properties than methods or attributes, e.g.:

image

https://audeering.github.io/audformat/api.html#table

hagenw commented 2 years ago

Good observation. I also have recognized that properties seem to be handled differently as it can happen that they are listed beside each other if they are small:

image

The related CSS entry seems to be this one:

.rst-content dl:not(.docutils) .property {
  display: inline-block;
  padding-right: 8px;
}

If we remove this we get

image

which also has the right bottom margin.