forked from wallabag/wallabag
Merge pull request #1369 from wallabag/v2-bottombar
fix #1332: bottom bar to display message
This commit is contained in:
@ -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>
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user