Updates all styles save for the tooltip and tracker, which are forthcoming. I just really wanted to commit all these changes.

This commit is contained in:
Chris Wilson
2020-11-30 21:15:47 -05:00
parent 7891c2761f
commit bd3b419de0
38 changed files with 300 additions and 131 deletions

View File

@@ -0,0 +1,19 @@
{% extends 'pageWrapper.html' %}
{% block head %}
{{ super() }}
<title>Upload Mystery YAML</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/checkResult.css") }}" />
{% endblock %}
{% block body %}
{% include 'cloudHeader.html' %}
<div id="check-result-wrapper">
<div id="check-result" class="grass-island">
{% for filename, resulttext in results.items() %}
<span>{{ filename }}: {{ "Looks ok" if resulttext == True else resulttext }}</span><br>
{% endfor %}
</div>
</div>
{% include 'islandFooter.html' %}
{% endblock %}