##// END OF EJS Templates
Reverse hscrollbar min-height hack on OS X...
Reverse hscrollbar min-height hack on OS X OS X has optional behavior to only draw scrollbars during scroll, which causes problems for CodeMirror's scrollbars. CodeMirror's solution is to set a minimum size for their scrollbars, which is always present. The trade is that the container overlays most of the last line, swallowing click events when there is scrolling to do, even when no scrollbar is visible. This reverses the trade, recovering the click events at the expense of never showing the horizontal scrollbar on OS X when this option is enabled.

File last commit:

r18589:135227ac
r20298:2907e856
Show More
rst.tpl
80 lines | 1.6 KiB | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'display_priority.tpl' -%}
{% block in_prompt %}
{% endblock in_prompt %}
{% block output_prompt %}
{% endblock output_prompt %}
{% block input %}
{%- if cell.source.strip() -%}
.. code:: python
{{ cell.source | indent}}
{%- endif -%}
{% endblock input %}
{% block error %}
::
{{ super() }}
{% endblock error %}
{% block traceback_line %}
{{ line | indent | strip_ansi }}
{% endblock traceback_line %}
{% block execute_result %}
{% block data_priority scoped %}
{{ super() }}
{% endblock %}
{% endblock execute_result %}
{% block stream %}
.. parsed-literal::
{{ output.text | indent }}
{% endblock stream %}
{% block data_svg %}
.. image:: {{ output.metadata.filenames['image/svg+xml'] | urlencode }}
{% endblock data_svg %}
{% block data_png %}
.. image:: {{ output.metadata.filenames['image/png'] | urlencode }}
{% endblock data_png %}
{% block data_jpg %}
.. image:: {{ output.metadata.filenames['image/jpeg'] | urlencode }}
{% endblock data_jpg %}
{% block data_latex %}
.. math::
{{ output.data['text/latex'] | strip_dollars | indent }}
{% endblock data_latex %}
{% block data_text scoped %}
.. parsed-literal::
{{ output.data['text/plain'] | indent }}
{% endblock data_text %}
{% block data_html scoped %}
.. raw:: html
{{ output.data['text/html'] | indent }}
{% endblock data_html %}
{% block markdowncell scoped %}
{{ cell.source | markdown2rst }}
{% endblock markdowncell %}
{% block headingcell scoped %}
{{ ("#" * cell.level + cell.source) | replace('\n', ' ') | markdown2rst }}
{% endblock headingcell %}
{% block unknowncell scoped %}
unknown type {{cell.type}}
{% endblock unknowncell %}