Browse Source

Merge pull request #130 from makinacorpus/master

Move font-family to style instead of hard-coded monospace
pull/136/head
Mounier Florian 11 years ago
parent
commit
7267eec61c
  1. 12
      pygal/css/base.css
  2. 1
      pygal/style.py

12
pygal/css/base.css

@ -23,32 +23,32 @@
*/ */
{{ id }}.title { {{ id }}.title {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.title }}; font-size: {{ font_sizes.title }};
} }
{{ id }}.legends .legend text { {{ id }}.legends .legend text {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.legend }}; font-size: {{ font_sizes.legend }};
} }
{{ id }}.axis text { {{ id }}.axis text {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.label }}; font-size: {{ font_sizes.label }};
} }
{{ id }}.axis text.major { {{ id }}.axis text.major {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.major_label }}; font-size: {{ font_sizes.major_label }};
} }
{{ id }}.series text { {{ id }}.series text {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.value }}; font-size: {{ font_sizes.value }};
} }
{{ id }}.tooltip text { {{ id }}.tooltip text {
font-family: monospace; font-family: {{ style.font_family }};
font-size: {{ font_sizes.tooltip }}; font-size: {{ font_sizes.tooltip }};
} }

1
pygal/style.py

@ -35,6 +35,7 @@ class Style(object):
foreground='#999', foreground='#999',
foreground_light='#eee', foreground_light='#eee',
foreground_dark='#555', foreground_dark='#555',
font_family='monospace',
opacity='.8', opacity='.8',
opacity_hover='.9', opacity_hover='.9',
transition='250ms', transition='250ms',

Loading…
Cancel
Save