Skip to content
Closed

Fix #4390

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelogs/unreleased/fix-docs-spacing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
description: This adds a space between the type and the attribute. Without the space will not always render
issue-nr: 52
issue-repo: inmanta-sphinx
change-type: patch
destination-branches: [master, iso5, iso4]
4 changes: 4 additions & 0 deletions docs/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* This adds a space between the type and the attribute. Without the space will not always render */
dl.attribute .sig-prename {
margin-left: 0.5em;
}
4 changes: 4 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,10 @@ def setup(app):
# Output file base name for HTML help builder.
htmlhelp_basename = 'InmantaDoc'

html_css_files = [
'css/custom.css',
]


# -- Options for LaTeX output --------------------------------------------------

Expand Down