1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

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
commit 34437f408c
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;
}