Merge pull request #1369 from wallabag/v2-bottombar

fix #1332: bottom bar to display message
This commit is contained in:
Jeremy Benoist
2015-08-19 21:27:49 +02:00
4 changed files with 24 additions and 0 deletions

View File

@ -113,5 +113,10 @@
<p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p>
</footer>
{% endblock %}
{% if warning_message %}
<div id="warning_message">
{{ warning_message | raw }}
</div>
{% endif %}
</body>
</html>

View File

@ -26,6 +26,20 @@ body {
background: #f0f0f0;
}
#warning_message {
position: fixed;
background-color: #ff6347;
z-index: 1000;
bottom: 0;
left: 0;
width: 100%;
color: #000;
}
#warning_message a {
color: #555;
}
.border-bottom {
border-bottom: 1px solid #DDD;
}