Styling to make it clearer where the editor is

This commit is contained in:
Thomas Kluyver 2014-11-18 14:53:00 -08:00
parent be85a342cf
commit 8dced9ab73

View File

@ -5,6 +5,11 @@
{% block stylesheet %}
<link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
<link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
<style>
#texteditor-container {
border-bottom: 1px solid #ccc;
}
</style>
{{super()}}
{% endblock %}
@ -43,7 +48,7 @@ data-file-path="{{file_path}}"
</div>
</div>
<div id="texteditor-container"></div>
<div id="texteditor-container" class="container"></div>
{% endblock %}