[WebHost] Fix /user-content styles (#408)
This commit is contained in:
parent
a080288e3e
commit
07ff0f1026
|
@ -44,11 +44,3 @@
|
||||||
#user-content table.dataTable{
|
#user-content table.dataTable{
|
||||||
width: unset;
|
width: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.dataTable thead th{
|
|
||||||
padding: 0 20px 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tbody td{
|
|
||||||
padding: 6px 20px 0 0;
|
|
||||||
}
|
|
||||||
|
|
|
@ -4,12 +4,13 @@
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
<title>User Content</title>
|
<title>User Content</title>
|
||||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/userContent.css") }}" />
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/userContent.css") }}" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
|
||||||
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/userContent.js") }}"></script>
|
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/userContent.js") }}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{% include 'header/oceanHeader.html' %}
|
{% include 'header/oceanHeader.html' %}
|
||||||
<div id="user-content-wrapper">
|
<div id="user-content-wrapper" class="markdown">
|
||||||
<div id="user-content" class="grass-island">
|
<div id="user-content" class="grass-island">
|
||||||
<h1>User Content</h1>
|
<h1>User Content</h1>
|
||||||
Below is a list of all the content you have generated on this site. Rooms and seeds are listed separately.
|
Below is a list of all the content you have generated on this site. Rooms and seeds are listed separately.
|
||||||
|
@ -68,5 +69,4 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% include 'islandFooter.html' %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue