mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Make SVG inheritance diagrams transparent
Previously they would be emitted with a white background
This commit is contained in:
parent
7ec567b6d0
commit
1bfc59036a
@ -247,6 +247,7 @@ class InheritanceGraph:
|
||||
default_graph_attrs = {
|
||||
'rankdir': 'LR',
|
||||
'size': '"8.0, 12.0"',
|
||||
'bgcolor': 'transparent',
|
||||
}
|
||||
default_node_attrs = {
|
||||
'shape': 'box',
|
||||
@ -254,7 +255,8 @@ class InheritanceGraph:
|
||||
'height': 0.25,
|
||||
'fontname': '"Vera Sans, DejaVu Sans, Liberation Sans, '
|
||||
'Arial, Helvetica, sans"',
|
||||
'style': '"setlinewidth(0.5)"',
|
||||
'style': '"setlinewidth(0.5),filled"',
|
||||
'fillcolor': 'white',
|
||||
}
|
||||
default_edge_attrs = {
|
||||
'arrowsize': 0.5,
|
||||
|
Loading…
Reference in New Issue
Block a user