mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-23 09:11:15 +00:00
19 lines
962 B
HTML
19 lines
962 B
HTML
|
{% comment %}used by repo_view_file.html, history_file_view.html, view_shared_file.html{% endcomment %}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/file_view_extra.css" />
|
||
|
<style type="text/css">
|
||
|
#footer { display:none; }
|
||
|
</style>
|
||
|
{% if filetype == 'Text' %}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}codemirror/codemirror.css" />
|
||
|
<style type="text/css">
|
||
|
.CodeMirror-scroll { min-height:400px; }
|
||
|
.CodeMirror { margin-bottom:40px; }
|
||
|
{% if fileext == 'txt' or fileext == 'text' %}
|
||
|
.CodeMirror {
|
||
|
width:624px;
|
||
|
padding:40px 96px;
|
||
|
}
|
||
|
{% endif %}
|
||
|
</style>
|
||
|
{% endif %}
|