1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-24 09:41:04 +00:00
seahub/templates/snippets/file_view_style.html
2013-02-26 05:16:18 +01:00

26 lines
1.1 KiB
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 %}
{% if filetype == 'Image' %}
<style type="text/css">
#file-view { text-align:center; padding:30px 0; }
</style>
{% endif %}
{% if filetype == 'Video' or filetype == 'Audio' %}
<link rel="stylesheet" href="{{MEDIA_URL}}css/mediaelementplayer.css" />
{% endif %}