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:
commit
34437f408c
4 changed files with 24 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue